USB: f_mass_storage: fix crash on bind() error
authorPeter Korsgaard <[email protected]>
Thu, 4 Feb 2010 16:15:25 +0000 (17:15 +0100)
committerGreg Kroah-Hartman <[email protected]>
Tue, 2 Mar 2010 22:54:55 +0000 (14:54 -0800)
init_completion() hasn't been called yet and the thread isn't created
if we end up here, so don't call complete() on thread_notifier.

Signed-off-by: Peter Korsgaard <[email protected]>
Acked-by: Michal Nazarewicz <[email protected]>
Cc: stable <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
drivers/usb/gadget/f_mass_storage.c

index 0553d9a5536b25d2c37750af1c4b344b3a021adc..e6abde39857d9b9423f37aec367eecf279b85134 100644 (file)
@@ -2865,7 +2865,6 @@ error_release:
        /* Call fsg_common_release() directly, ref might be not
         * initialised */
        fsg_common_release(&common->ref);
-       complete(&common->thread_notifier);
        return ERR_PTR(rc);
 }