From: David Linares Date: Mon, 25 Mar 2013 10:50:27 +0000 (+0000) Subject: USB: hub: Avoid NULL pointer dereference when hub doesn't have any ports X-Git-Tag: omap-for-v3.10/dt-fixes-for-merge-window~135^2~218 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=769d7368b1727b1b5369d88badf0cbdf0163e079;p=pandora-kernel.git USB: hub: Avoid NULL pointer dereference when hub doesn't have any ports Return an error if hub->descriptor->bNbrPorts==0. Without this additional check, we can end up doing a "hub->ports = kzalloc(0, GFP_KERNEL)". This hub->ports pointer will therefore be non-NULL and will be used. Example of dmesg: INIT: usb 1-1: New USB device found, idVendor=0424, idProduct=2512 usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0 hub 1-1:1.0: USB hub found version 2.86 bootinghub 1-1:1.0: 0 ports detected Unable to handle kernel NULL pointer dereference at virtual address 00000010 Signed-off-by: David Linares Signed-off-by: Greg Kroah-Hartman --- Reading git-diff-tree failed