]> git.karo-electronics.de Git - karo-tx-linux.git/commit
mmc: vub300: add missing usb_free_urb
authorJulia Lawall <Julia.Lawall@lip6.fr>
Tue, 24 Jul 2012 15:06:10 +0000 (17:06 +0200)
committerChris Ball <cjb@laptop.org>
Wed, 8 Aug 2012 03:57:01 +0000 (23:57 -0400)
commitb33c706ec99fc3d81d2e3687f4c274e40a2d76e5
tree06585fa9f6e3e8cd716a320ee8e9c32cb15440e3
parentb2293055c1e1200acbb46523976852d1686fdfa4
mmc: vub300: add missing usb_free_urb

Add missing usb_free_urb on failure path after usb_alloc_urb.

A simplified version of the semantic match that finds this problem is as
follows: (http://coccinelle.lip6.fr/)

// <smpl>
@km exists@
local idexpression e;
expression e1,e2,e3;
type T,T1;
identifier f;
@@

* e = usb_alloc_urb(...)
... when any
    when != e = e1
    when != e1 = (T)e
    when != e1(...,(T)e,...)
    when != &e->f
if(...) { ... when != e2(...,(T1)e,...)
                 when != e3 = e
                 when forall
(
             return <+...e...+>;
|
*             return ...;
) }
// </smpl>

Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>
Signed-off-by: Chris Ball <cjb@laptop.org>
drivers/mmc/host/vub300.c