All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ALSA: usb-audio: Fix memory leak in __snd_usbmidi_create
@ 2019-10-27 22:10 ` Navid Emamdoost
  0 siblings, 0 replies; 12+ messages in thread
From: Navid Emamdoost @ 2019-10-27 22:10 UTC (permalink / raw)
  Cc: emamd001, kjlu, smccaman, Navid Emamdoost, Clemens Ladisch,
	Jaroslav Kysela, Takashi Iwai, alsa-devel, linux-kernel

In the implementation of __snd_usbmidi_create() there is a memory leak
caused by incorrect goto destination. Go to free_midi if
snd_usbmidi_create_endpoints_midiman() or snd_usbmidi_create_endpoints()
fail.

Fixes: 731209cc0417 ("ALSA: usb-midi: Use common error handling code in __snd_usbmidi_create()")
Signed-off-by: Navid Emamdoost <navid.emamdoost@gmail.com>
---
 sound/usb/midi.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sound/usb/midi.c b/sound/usb/midi.c
index b737f0ec77d0..22db37fbfbbd 100644
--- a/sound/usb/midi.c
+++ b/sound/usb/midi.c
@@ -2476,7 +2476,7 @@ int __snd_usbmidi_create(struct snd_card *card,
 	else
 		err = snd_usbmidi_create_endpoints(umidi, endpoints);
 	if (err < 0)
-		goto exit;
+		goto free_midi;
 
 	usb_autopm_get_interface_no_resume(umidi->iface);
 
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2019-10-28 16:48 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-10-27 22:10 [PATCH] ALSA: usb-audio: Fix memory leak in __snd_usbmidi_create Navid Emamdoost
2019-10-27 22:10 ` [alsa-devel] " Navid Emamdoost
2019-10-28  6:27 ` Takashi Iwai
2019-10-28  6:27   ` [alsa-devel] " Takashi Iwai
2019-10-28 16:25   ` Navid Emamdoost
2019-10-28 16:25     ` [alsa-devel] " Navid Emamdoost
2019-10-28 16:38     ` Takashi Iwai
2019-10-28 16:38       ` [alsa-devel] " Takashi Iwai
2019-10-28 16:42       ` Navid Emamdoost
2019-10-28 16:42         ` [alsa-devel] " Navid Emamdoost
2019-10-28 16:38     ` Clemens Ladisch
2019-10-28 16:38       ` [alsa-devel] " Clemens Ladisch

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.