This is a note to let you know that I've just added the patch titled ALSA: usb-audio: Fix potential memory leaks to the 6.0-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: alsa-usb-audio-fix-potential-memory-leaks.patch and it can be found in the queue-6.0 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From 6382da0828995af87aa8b8bef28cc61aceb4aff3 Mon Sep 17 00:00:00 2001 From: Takashi Iwai <tiwai@xxxxxxx> Date: Fri, 30 Sep 2022 12:01:51 +0200 Subject: ALSA: usb-audio: Fix potential memory leaks From: Takashi Iwai <tiwai@xxxxxxx> commit 6382da0828995af87aa8b8bef28cc61aceb4aff3 upstream. When the driver hits -ENOMEM at allocating a URB or a buffer, it aborts and goes to the error path that releases the all previously allocated resources. However, when -ENOMEM hits at the middle of the sync EP URB allocation loop, the partially allocated URBs might be left without released, because ep->nurbs is still zero at that point. Fix it by setting ep->nurbs at first, so that the error handler loops over the full URB list. Cc: <stable@xxxxxxxxxxxxxxx> Link: https://lore.kernel.org/r/20220930100151.19461-1-tiwai@xxxxxxx Signed-off-by: Takashi Iwai <tiwai@xxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- sound/usb/endpoint.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) --- a/sound/usb/endpoint.c +++ b/sound/usb/endpoint.c @@ -1261,6 +1261,7 @@ static int sync_ep_set_params(struct snd if (!ep->syncbuf) return -ENOMEM; + ep->nurbs = SYNC_URBS; for (i = 0; i < SYNC_URBS; i++) { struct snd_urb_ctx *u = &ep->urb[i]; u->index = i; @@ -1280,8 +1281,6 @@ static int sync_ep_set_params(struct snd u->urb->complete = snd_complete_urb; } - ep->nurbs = SYNC_URBS; - return 0; out_of_memory: Patches currently in stable-queue which might be from tiwai@xxxxxxx are queue-6.0/alsa-rawmidi-drop-register_mutex-in-snd_rawmidi_free.patch queue-6.0/alsa-oss-fix-potential-deadlock-at-unregistration.patch queue-6.0/alsa-usb-audio-fix-potential-memory-leaks.patch queue-6.0/alsa-hda-realtek-add-quirk-for-asus-gv601r-laptop.patch queue-6.0/alsa-hda-realtek-correct-pin-configs-for-asus-g533z.patch queue-6.0/alsa-hda-realtek-remove-alc289_fixup_dual_spk-for-dell-5530.patch queue-6.0/alsa-hda-realtek-add-intel-reference-ssid-to-support-headset-keys.patch queue-6.0/alsa-usb-audio-fix-null-dererence-at-error-path.patch