diff options
author | Marina Makienko <makienko@ispras.ru> | 2012-11-27 06:46:57 (GMT) |
---|---|---|
committer | Chris Ball <cjb@laptop.org> | 2012-12-06 18:55:03 (GMT) |
commit | 063f96c2230052356d8653381912e618a8ae951c (patch) | |
tree | fa34b830b6f5c498ebac3d4e9764ea3840201948 | |
parent | 06960a1b5d55d77d799050d2f62970d36d34a606 (diff) | |
download | linux-063f96c2230052356d8653381912e618a8ae951c.tar.xz |
mmc: vub300: add missing usb_put_dev
Add missing usb_put_dev on failure path in vub300_probe().
Found by Linux Driver Verification project (linuxtesting.org).
Signed-off-by: Marina Makienko <makienko@ispras.ru>
Signed-off-by: Chris Ball <cjb@laptop.org>
-rw-r--r-- | drivers/mmc/host/vub300.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/mmc/host/vub300.c b/drivers/mmc/host/vub300.c index d5655a6..cb9f361 100644 --- a/drivers/mmc/host/vub300.c +++ b/drivers/mmc/host/vub300.c @@ -2362,6 +2362,7 @@ error4: error1: usb_free_urb(command_out_urb); error0: + usb_put_dev(udev); return retval; } |