mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 11:46:19 +00:00
[PATCH] Fix sequencer missing negative bound check
'int dev' came out of an 'unsigned char *' - as such, it will not get a negative value. Thanks Valdis. Signed-off-by: Eugene Teo <eugene.teo@eugeneteo.net> Cc: Jaroslav Kysela <perex@suse.cz> Acked-by: Takashi Iwai <tiwai@suse.de> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
1ad3dcc09c
commit
37f1e98425
1 changed files with 2 additions and 2 deletions
|
@ -709,11 +709,11 @@ static void seq_local_event(unsigned char *event_rec)
|
|||
|
||||
static void seq_sysex_message(unsigned char *event_rec)
|
||||
{
|
||||
int dev = event_rec[1];
|
||||
unsigned int dev = event_rec[1];
|
||||
int i, l = 0;
|
||||
unsigned char *buf = &event_rec[2];
|
||||
|
||||
if ((int) dev > max_synthdev)
|
||||
if (dev > max_synthdev)
|
||||
return;
|
||||
if (!(synth_open_mask & (1 << dev)))
|
||||
return;
|
||||
|
|
Loading…
Reference in a new issue