Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1462252 > unrolled thread

[PATCH 3.16 279/305] ALSA: timer: Fix leak in events via snd_timer_user_tinterrupt

Started byBen Hutchings <ben@decadent.org.uk>
First post2016-08-14 20:10 +0200
Last post2016-08-14 20:10 +0200
Articles 1 — 1 participant

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  [PATCH 3.16 279/305] ALSA: timer: Fix leak in events via  snd_timer_user_tinterrupt Ben Hutchings <ben@decadent.org.uk> - 2016-08-14 20:10 +0200

#1462252 — [PATCH 3.16 279/305] ALSA: timer: Fix leak in events via snd_timer_user_tinterrupt

FromBen Hutchings <ben@decadent.org.uk>
Date2016-08-14 20:10 +0200
Subject[PATCH 3.16 279/305] ALSA: timer: Fix leak in events via snd_timer_user_tinterrupt
Message-ID<s681d-31c-85@gated-at.bofh.it>
3.16.37-rc1 review patch.  If anyone has any objections, please let me know.

------------------

From: Kangjie Lu <kangjielu@gmail.com>

commit e4ec8cc8039a7063e24204299b462bd1383184a5 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: Ben Hutchings <ben@decadent.org.uk>
---
 sound/core/timer.c | 1 +
 1 file changed, 1 insertion(+)

--- a/sound/core/timer.c
+++ b/sound/core/timer.c
@@ -1286,6 +1286,7 @@ static void snd_timer_user_tinterrupt(st
 	}
 	if ((tu->filter & (1 << SNDRV_TIMER_EVENT_RESOLUTION)) &&
 	    tu->last_resolution != resolution) {
+		memset(&r1, 0, sizeof(r1));
 		r1.event = SNDRV_TIMER_EVENT_RESOLUTION;
 		r1.tstamp = tstamp;
 		r1.val = resolution;

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web