Skip to content

Commit 7b5fc16

Browse files
committed
More error checking.
1 parent f1b54df commit 7b5fc16

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

ax25_pad.c

+5-1
Original file line numberDiff line numberDiff line change
@@ -1295,7 +1295,11 @@ void ax25_get_addr_with_ssid (packet_t this_p, int n, char *station)
12951295
station[6] = '\0';
12961296

12971297
for (i=5; i>=0; i--) {
1298-
if (station[i] == ' ')
1298+
if (station[i] == '\0') {
1299+
text_color_set(DW_COLOR_ERROR);
1300+
dw_printf ("Station address \"%s\" contains nul character. AX.25 protocol requires trailing ASCII spaces when less than 6 characters.\n", station);
1301+
}
1302+
else if (station[i] == ' ')
12991303
station[i] = '\0';
13001304
else
13011305
break;

0 commit comments

Comments
 (0)