aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/drivers/usb/host/u132-hcd.c
diff options
context:
space:
mode:
authorKangjie Lu <kjlu@umn.edu>2019-03-19 12:34:06 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2019-03-26 16:42:53 +0900
commit3de3dbe7c13210171ba8411e36b409a2c29c7415 (patch)
treed9fc8d0e0541f683868c4ae1382d35298a6e2e19 /drivers/usb/host/u132-hcd.c
parentusb: typec: wcove: Provide fwnode for the port (diff)
downloadwireguard-linux-3de3dbe7c13210171ba8411e36b409a2c29c7415.tar.xz
wireguard-linux-3de3dbe7c13210171ba8411e36b409a2c29c7415.zip
usb: u132-hcd: fix potential NULL pointer dereference
In case create_singlethread_workqueue fails, the fix notifies callers the error to avoid potential NULL pointer dereferences. Signed-off-by: Kangjie Lu <kjlu@umn.edu> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/host/u132-hcd.c')
-rw-r--r--drivers/usb/host/u132-hcd.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/usb/host/u132-hcd.c b/drivers/usb/host/u132-hcd.c
index 934584f0a20a..e29165027e8b 100644
--- a/drivers/usb/host/u132-hcd.c
+++ b/drivers/usb/host/u132-hcd.c
@@ -3203,6 +3203,8 @@ static int __init u132_hcd_init(void)
return -ENODEV;
printk(KERN_INFO "driver %s\n", hcd_name);
workqueue = create_singlethread_workqueue("u132");
+ if (!workqueue)
+ return -ENOMEM;
retval = platform_driver_register(&u132_platform_driver);
return retval;
}