Skip to content

Commit b35a674

Browse files
committed
Remove assert for invalid transmit channel and issue proper message.
1 parent 8162648 commit b35a674

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

tq.c

+2-4
Original file line numberDiff line numberDiff line change
@@ -214,16 +214,14 @@ void tq_append (int chan, int prio, packet_t pp)
214214
{
215215
packet_t plast;
216216
packet_t pnext;
217-
//int a = ACHAN2ADEV(chan); /* Audio device for channel. */
217+
218218

219219
#if DEBUG
220220
text_color_set(DW_COLOR_DEBUG);
221221
dw_printf ("tq_append (chan=%d, prio=%d, pp=%p)\n", chan, prio, pp);
222222
#endif
223223

224224

225-
226-
assert (chan >= 0 && chan < MAX_CHANS);
227225
assert (prio >= 0 && prio < TQ_NUM_PRIO);
228226

229227
if (pp == NULL) {
@@ -240,7 +238,7 @@ void tq_append (int chan, int prio, packet_t pp)
240238
}
241239
#endif
242240

243-
if ( ! save_audio_config_p->achan[chan].valid) {
241+
if (chan < 0 || chan >= MAX_CHANS || ! save_audio_config_p->achan[chan].valid) {
244242
text_color_set(DW_COLOR_ERROR);
245243
dw_printf ("ERROR - Request to transmit on invalid radio channel %d.\n", chan);
246244
ax25_delete(pp);

0 commit comments

Comments
 (0)