Skip to content

Commit 5736b0f

Browse files
committed
Check index.
1 parent 44f576c commit 5736b0f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/igate.c

+3-1
Original file line numberDiff line numberDiff line change
@@ -1071,6 +1071,8 @@ void igate_send_rec_packet (int chan, packet_t recv_pp)
10711071
* Inputs: pp - Packet object.
10721072
*
10731073
* chan - Radio channel where it was received.
1074+
* This will be -1 if from a beacon with sendto=ig
1075+
* so be careful if using as subscript.
10741076
*
10751077
* Description: Duplicate detection is handled here.
10761078
* Suppress if same was sent recently.
@@ -1141,7 +1143,7 @@ static void send_packet_to_server (packet_t pp, int chan)
11411143
strlcat (msg, ",qAO,", sizeof(msg)); // new for version 1.4.
11421144
}
11431145

1144-
strlcat (msg, save_audio_config_p->mycall[chan], sizeof(msg));
1146+
strlcat (msg, save_audio_config_p->mycall[chan>=0 ? chan : 0], sizeof(msg));
11451147
strlcat (msg, ":", sizeof(msg));
11461148

11471149

0 commit comments

Comments
 (0)