mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-10 07:00:48 +00:00
usbnet: smsc95xx: dereferencing NULL pointer
we were dereferencing dev to initialize pdata. but just after that we have a BUG_ON(!dev). so we were basically dereferencing the pointer first and then tesing it for NULL. Signed-off-by: Sudip Mukherjee <sudip@vectorindia.org> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
d65c4e4e0a
commit
8bca81d987
@ -1670,12 +1670,14 @@ done:
|
||||
static int smsc95xx_resume(struct usb_interface *intf)
|
||||
{
|
||||
struct usbnet *dev = usb_get_intfdata(intf);
|
||||
struct smsc95xx_priv *pdata = (struct smsc95xx_priv *)(dev->data[0]);
|
||||
u8 suspend_flags = pdata->suspend_flags;
|
||||
struct smsc95xx_priv *pdata;
|
||||
u8 suspend_flags;
|
||||
int ret;
|
||||
u32 val;
|
||||
|
||||
BUG_ON(!dev);
|
||||
pdata = (struct smsc95xx_priv *)(dev->data[0]);
|
||||
suspend_flags = pdata->suspend_flags;
|
||||
|
||||
netdev_dbg(dev->net, "resume suspend_flags=0x%02x\n", suspend_flags);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user