Commit 99a9ffac authored by Colin Ian King's avatar Colin Ian King Committed by Greg Kroah-Hartman

staging: speakup: ensure we do not overrun synths array

synth_add allows one to add MAXSYNTHS synths to the synths array;
however it always NULLifies the next synth in the array which
means that on the MAXSYNTHS synth we get an out-of-bounds write of
the NULL to the synths array.  Make the synths array MAXSYNTHS + 1
elements in size to allow for the final NULL sentinal to avoid the
out-of-bounds write.

Issue found wit CoverityScan, CID#744671
Signed-off-by: default avatarColin Ian King <colin.king@canonical.com>
Reviewed-by: default avatarSamuel Thibault <samuel.thibault@ens-lyon.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent b6ed5a23
...@@ -18,7 +18,7 @@ ...@@ -18,7 +18,7 @@
#include "serialio.h" #include "serialio.h"
#define MAXSYNTHS 16 /* Max number of synths in array. */ #define MAXSYNTHS 16 /* Max number of synths in array. */
static struct spk_synth *synths[MAXSYNTHS]; static struct spk_synth *synths[MAXSYNTHS + 1];
struct spk_synth *synth; struct spk_synth *synth;
char spk_pitch_buff[32] = ""; char spk_pitch_buff[32] = "";
static int module_status; static int module_status;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment