[alsa-devel] [PATCH v2 MC Next Gen] sound/usb: Fix out of bounds access in media_entity_init()
Fix the out of bounds access in media_entity_init() found by KASan. This is a result of media_mixer_init() failing to allocate memory for all 3 of its pads before calling media_entity_init(). Fix it to allocate memory for the right struct media_mixer_ctl instead of struct media_ctl.
Signed-off-by: Shuah Khan shuahkh@osg.samsung.com ---
Changes since v1: Change to address review comment from Takashi Iwai
This patch fixes the mixer patch below: https://patchwork.linuxtv.org/patch/31827/
sound/usb/media.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sound/usb/media.c b/sound/usb/media.c index bebe27b..b0d283f 100644 --- a/sound/usb/media.c +++ b/sound/usb/media.c @@ -233,8 +233,8 @@ int media_mixer_init(struct snd_usb_audio *chip) if (mixer->media_mixer_ctl) continue;
- /* allocate media_ctl */ - mctl = kzalloc(sizeof(struct media_ctl), GFP_KERNEL); + /* allocate media_mixer_ctl */ + mctl = kzalloc(sizeof(*mctl), GFP_KERNEL); if (!mctl) return -ENOMEM;
participants (1)
-
Shuah Khan