mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-24 21:50:53 +07:00
sound: oss: midi_synth: check get_user() return value
get_user() may fail, if so return -EFAULT. Signed-off-by: Kulikov Vasiliy <segooon@gmail.com> Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
5157cc8113
commit
b3390ceab9
@ -523,7 +523,9 @@ midi_synth_load_patch(int dev, int format, const char __user *addr,
|
||||
{
|
||||
unsigned char data;
|
||||
|
||||
get_user(*(unsigned char *) &data, (unsigned char __user *) &((addr)[hdr_size + i]));
|
||||
if (get_user(data,
|
||||
(unsigned char __user *)(addr + hdr_size + i)))
|
||||
return -EFAULT;
|
||||
|
||||
eox_seen = (i > 0 && data & 0x80); /* End of sysex */
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user