You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: ax25_pad.c
+35-11
Original file line number
Diff line number
Diff line change
@@ -760,12 +760,18 @@ int ax25_parse_addr (int position, char *in_addr, int strict, char *out_addr, in
760
760
maxlen=strict ? 6 : (AX25_MAX_ADDR_LEN-1);
761
761
p=in_addr;
762
762
i=0;
763
-
for (p=in_addr; isalnum(*p); p++) {
763
+
for (p=in_addr; *p!='\0'&&*p!='-'; p++) {
764
764
if (i >= maxlen) {
765
765
text_color_set(DW_COLOR_ERROR);
766
766
dw_printf ("%sAddress is too long. \"%s\" has more than %d characters.\n", position_name[position], in_addr, maxlen);
767
767
return0;
768
768
}
769
+
if ( ! isalnum(*p)) {
770
+
text_color_set(DW_COLOR_ERROR);
771
+
dw_printf ("%sAddress, \"%s\" contains character other than letter or digit in character position %d.\n", position_name[position], in_addr, (int)(long)(p-in_addr)+1);
772
+
return0;
773
+
}
774
+
769
775
out_addr[i++] =*p;
770
776
out_addr[i] ='\0';
771
777
if (strict&&islower(*p)) {
@@ -1257,13 +1263,22 @@ void ax25_get_addr_with_ssid (packet_t this_p, int n, char *station)
1257
1263
return;
1258
1264
}
1259
1265
1260
-
memset (station, 0, 7);
1266
+
// At one time this would stop at the first space, on the assumption we would have only trailing spaces.
1267
+
// Then there was a forum discussion where someone encountered the address " WIDE2" with a leading space.
1268
+
// In that case, we would have returned a zero length string here.
1269
+
// Now we return exactly what is in the address field and trim trailing spaces.
1270
+
// This will provide better information for troubleshooting.
0 commit comments