Patch "ALSA: usb: midi: don't return -ENOMEM when usb_urb_ep_type_check fails" has been added to the 5.10-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    ALSA: usb: midi: don't return -ENOMEM when usb_urb_ep_type_check fails

to the 5.10-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-midi-don-t-return-enomem-when-usb_urb_ep_ty.patch
and it can be found in the queue-5.10 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit 7a716527f9792bba67a8f77c80ad90a2789cb9bf
Author: Colin Ian King <colin.king@xxxxxxxxxxxxx>
Date:   Tue Apr 20 14:47:19 2021 +0100

    ALSA: usb: midi: don't return -ENOMEM when usb_urb_ep_type_check fails
    
    [ Upstream commit cfd577acb769301b19c31361d45ae1f145318b7a ]
    
    Currently when the call to usb_urb_ep_type_check fails (returning -EINVAL)
    the error return path returns -ENOMEM via the exit label "error". Other
    uses of the same error exit label set the err variable to -ENOMEM but this
    is not being used.  I believe the original intent was for the error exit
    path to return the value in err rather than the hard coded -ENOMEM, so
    return this rather than the hard coded -ENOMEM.
    
    Addresses-Coverity: ("Unused value")
    Fixes: 738d9edcfd44 ("ALSA: usb-audio: Add sanity checks for invalid EPs")
    Signed-off-by: Colin Ian King <colin.king@xxxxxxxxxxxxx>
    Link: https://lore.kernel.org/r/20210420134719.381409-1-colin.king@xxxxxxxxxxxxx
    Signed-off-by: Takashi Iwai <tiwai@xxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/sound/usb/midi.c b/sound/usb/midi.c
index 0c23fa6d8525..cd46ca7cd28d 100644
--- a/sound/usb/midi.c
+++ b/sound/usb/midi.c
@@ -1332,7 +1332,7 @@ static int snd_usbmidi_in_endpoint_create(struct snd_usb_midi *umidi,
 
  error:
 	snd_usbmidi_in_endpoint_delete(ep);
-	return -ENOMEM;
+	return err;
 }
 
 /*



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux