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>
This commit is contained in:
Marina Makienko 2012-11-27 10:46:57 +04:00 committed by Chris Ball
parent 06960a1b5d
commit 063f96c223
1 changed files with 1 additions and 0 deletions

View File

@ -2362,6 +2362,7 @@ error4:
error1: error1:
usb_free_urb(command_out_urb); usb_free_urb(command_out_urb);
error0: error0:
usb_put_dev(udev);
return retval; return retval;
} }