Re: [PATCH v2] usbnet: smsc95xx: dereferencing NULL pointer

2014-11-11 Thread David Miller
From: Sudip Mukherjee Date: Tue, 11 Nov 2014 14:10:47 +0530 > 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 > --- > > change in

[PATCH v2] usbnet: smsc95xx: dereferencing NULL pointer

2014-11-11 Thread Sudip Mukherjee
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 --- change in v2: suspend_flags is initialised after pdata is initialised. v1 had a very sil