]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
[media] tm6000: Fix resource freeing in 'tm6000_prepare_isoc()'
authorChristophe JAILLET <christophe.jaillet@wanadoo.fr>
Wed, 22 Feb 2017 22:32:19 +0000 (19:32 -0300)
committerMauro Carvalho Chehab <mchehab@s-opensource.com>
Mon, 17 Apr 2017 16:11:45 +0000 (13:11 -0300)
'usb_free_urb(urb)' is a no-op, because urb is known to be NULL.

It is likelly that releasing resources allocated by
'tm6000_alloc_urb_buffers()' just a few lines above is expected here.

This has been spotted by the following coccinelle script:
@@
expression ret, x, e;
identifier f;
@@

*   if (x == NULL)
    {
     ... when != x = e;
(
*    f(<+...x...+>);
|
*    ret = f(<+...x...+>);
)
     ...
    }

Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
drivers/media/usb/tm6000/tm6000-video.c

index c4fdc1fa32ef2df170f10339978dba8ea5f288ee..7e960d0a5b929bb6c5dff6ac544b643063bd7b7a 100644 (file)
@@ -631,7 +631,7 @@ static int tm6000_prepare_isoc(struct tm6000_core *dev)
                urb = usb_alloc_urb(max_packets, GFP_KERNEL);
                if (!urb) {
                        tm6000_uninit_isoc(dev);
-                       usb_free_urb(urb);
+                       tm6000_free_urb_buffers(dev);
                        return -ENOMEM;
                }
                dev->isoc_ctl.urb[i] = urb;