aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorColin Ian King <colin.king@canonical.com>2013-03-15 13:14:57 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-03-15 14:51:01 -0400
commita1645eefc8358d0a9dbeba254e51aa89de4d80a4 (patch)
tree28e67aa52534b4e66b0c8eaff3980d718fe84be3
parent5b2750d5b5a25c9c8b842e22fb2a7015dc798455 (diff)
usb: misc: sisusbvga: Avoid NULL pointer dereference from sisusb
A failed kzalloc() is reported with a dev_err that dereferences the null sisusb, this will cause a NULL pointer deference error. Instead, pass dev->dev to the dev_err() rather than &sisusb->sisusb_dev->dev Smatch analysis: drivers/usb/misc/sisusbvga/sisusb.c:3087 sisusb_probe() error: potential null dereference 'sisusb'. (kzalloc returns null) Signed-off-by: Colin Ian King <colin.king@canonical.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/usb/misc/sisusbvga/sisusb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/misc/sisusbvga/sisusb.c b/drivers/usb/misc/sisusbvga/sisusb.c
index dd573abd2d1e..c21386ec5d35 100644
--- a/drivers/usb/misc/sisusbvga/sisusb.c
+++ b/drivers/usb/misc/sisusbvga/sisusb.c
@@ -3084,7 +3084,7 @@ static int sisusb_probe(struct usb_interface *intf,
3084 3084
3085 /* Allocate memory for our private */ 3085 /* Allocate memory for our private */
3086 if (!(sisusb = kzalloc(sizeof(*sisusb), GFP_KERNEL))) { 3086 if (!(sisusb = kzalloc(sizeof(*sisusb), GFP_KERNEL))) {
3087 dev_err(&sisusb->sisusb_dev->dev, "Failed to allocate memory for private data\n"); 3087 dev_err(&dev->dev, "Failed to allocate memory for private data\n");
3088 return -ENOMEM; 3088 return -ENOMEM;
3089 } 3089 }
3090 kref_init(&sisusb->kref); 3090 kref_init(&sisusb->kref);