Added failure check for usb_assign_descriptors call in bind function.

Signed-off-by: Pavitrakumar Managutte <pavitra1...@gmail.com>
---
 drivers/usb/gadget/function/f_ncm.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/drivers/usb/gadget/function/f_ncm.c 
b/drivers/usb/gadget/function/f_ncm.c
index bcdc882..ff584f7 100644
--- a/drivers/usb/gadget/function/f_ncm.c
+++ b/drivers/usb/gadget/function/f_ncm.c
@@ -1433,6 +1433,9 @@ static int ncm_bind(struct usb_configuration *c, struct 
usb_function *f)
 
        status = usb_assign_descriptors(f, ncm_fs_function, ncm_hs_function,
                        NULL);
+       if (status)
+               goto fail;
+
        /*
         * NOTE:  all that is done without knowing or caring about
         * the network link ... which is unavailable to this code
-- 
1.8.1.5

--
To unsubscribe from this list: send the line "unsubscribe linux-usb" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to