mirror of
https://github.com/FEX-Emu/linux.git
synced 2025-02-06 03:10:56 +00:00
USB: imx_udc: fix leak in imx_ep_alloc_request()
cppcheck found another leak in drivers/usb/gadget/imx_udc.c Cc: Mike Lee <eemike@gmail.com> Cc: Darius Augulis <augulis.darius@gmail.com> Signed-off-by: Daniel Mack <daniel@caiaq.de> Cc: David Brownell <david-b@pacbell.net> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
5512966643
commit
1e0abb7e18
@ -734,9 +734,12 @@ static struct usb_request *imx_ep_alloc_request
|
||||
{
|
||||
struct imx_request *req;
|
||||
|
||||
if (!usb_ep)
|
||||
return NULL;
|
||||
|
||||
req = kzalloc(sizeof *req, gfp_flags);
|
||||
if (!req || !usb_ep)
|
||||
return 0;
|
||||
if (!req)
|
||||
return NULL;
|
||||
|
||||
INIT_LIST_HEAD(&req->queue);
|
||||
req->in_use = 0;
|
||||
|
Loading…
x
Reference in New Issue
Block a user