mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-06 10:00:17 +00:00
ALSA: timer: Fix leak in events via snd_timer_user_tinterrupt
commit e4ec8cc803 upstream.
The stack object “r1” has a total size of 32 bytes. Its field
“event” and “val” both contain 4 bytes padding. These 8 bytes
padding bytes are sent to user without being initialized.
Signed-off-by: Kangjie Lu <kjlu@gatech.edu>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
3e6af33c73
commit
8fd58e050f
@@ -1282,6 +1282,7 @@ static void snd_timer_user_tinterrupt(struct snd_timer_instance *timeri,
|
|||||||
}
|
}
|
||||||
if ((tu->filter & (1 << SNDRV_TIMER_EVENT_RESOLUTION)) &&
|
if ((tu->filter & (1 << SNDRV_TIMER_EVENT_RESOLUTION)) &&
|
||||||
tu->last_resolution != resolution) {
|
tu->last_resolution != resolution) {
|
||||||
|
memset(&r1, 0, sizeof(r1));
|
||||||
r1.event = SNDRV_TIMER_EVENT_RESOLUTION;
|
r1.event = SNDRV_TIMER_EVENT_RESOLUTION;
|
||||||
r1.tstamp = tstamp;
|
r1.tstamp = tstamp;
|
||||||
r1.val = resolution;
|
r1.val = resolution;
|
||||||
|
|||||||
Reference in New Issue
Block a user