From cabd3784bc7e33d63906602e33a5d01b60c1dee1 Mon Sep 17 00:00:00 2001 From: Richard Cornwell Date: Fri, 17 Apr 2020 18:20:27 -0700 Subject: [PATCH] I7000: Fixed potential memory access error. --- I7000/i7000_mt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/I7000/i7000_mt.c b/I7000/i7000_mt.c index 23f26471..3cc95dee 100644 --- a/I7000/i7000_mt.c +++ b/I7000/i7000_mt.c @@ -138,7 +138,7 @@ extern uint8 chan_io_status[NUM_CHAN]; /* Channel status */ #endif /* Channel level activity */ -uint8 mt_chan[NUM_DEVS]; +uint8 mt_chan[NUM_CHAN]; /* One buffer per channel */ uint8 mt_buffer[NUM_DEVS][BUFFSIZE];