aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKangjie Lu <kangjielu@gmail.com>2016-05-03 16:44:07 -0400
committerMattias Nissler <mnissler@google.com>2016-07-20 16:18:42 +0200
commit64a7de49b9e21b83d6b066e9cedc54c901e6efae (patch)
treec605a68ab1d51058d316fe17315632ae54192d43
parentbd62548b9ca90f77b53c1b28618f092e33c45ea5 (diff)
downloadv4.4-64a7de49b9e21b83d6b066e9cedc54c901e6efae.tar.gz
UPSTREAM: ALSA: timer: Fix leak in SNDRV_TIMER_IOCTL_PARAMS
The stack object “tread” 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> Bug: None Patchset: alsa-info-leak-fixes (cherry-picked from cec8f96e49d9be372fdb0c3836dcf31ec71e457e) Signed-off-by: Mattias Nissler <mnissler@google.com> Change-Id: I6f1072552af4f189cec4ee5d85c6391cf8eb18a4
-rw-r--r--sound/core/timer.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/sound/core/timer.c b/sound/core/timer.c
index b982d1b089bd..cfa3500a3327 100644
--- a/sound/core/timer.c
+++ b/sound/core/timer.c
@@ -1746,6 +1746,7 @@ static int snd_timer_user_params(struct file *file,
if (tu->timeri->flags & SNDRV_TIMER_IFLG_EARLY_EVENT) {
if (tu->tread) {
struct snd_timer_tread tread;
+ memset(&tread, 0, sizeof(tread));
tread.event = SNDRV_TIMER_EVENT_EARLY;
tread.tstamp.tv_sec = 0;
tread.tstamp.tv_nsec = 0;