Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix: Break when failing to create AX.25 frame from AGWPE M frame
Without this, the command handler will go on to try to process and
enqueue a null packet
  • Loading branch information
doismellburning committed Apr 8, 2026
commit 83188c97f6884987a2dc58a348c3bdbf3a1de084
1 change: 1 addition & 0 deletions src/server.c
Original file line number Diff line number Diff line change
Expand Up @@ -2075,6 +2075,7 @@ static THREAD_F cmd_listen_thread (void *arg)
if (pp == NULL) {
text_color_set(DW_COLOR_ERROR);
dw_printf ("Failed to create frame from AGW 'M' message.\n");
break;
}

ax25_set_info (pp, (unsigned char*)cmd.data, data_len);
Expand Down
Loading