usb: gadget: u_ether: fix dereference after null check coverify warning
dev->port_usb is checked for null pointer at above code, so dev->port_usb might be null, fix it by adding null pointer check. Signed-off-by: Peter Chen <peter.chen@nxp.com> Signed-off-by: Felipe Balbi <felipe.balbi@linux.intel.com>
This commit is contained in:
Родитель
c526c62d56
Коммит
88c09eacf5
|
@ -556,7 +556,8 @@ static netdev_tx_t eth_start_xmit(struct sk_buff *skb,
|
||||||
/* Multi frame CDC protocols may store the frame for
|
/* Multi frame CDC protocols may store the frame for
|
||||||
* later which is not a dropped frame.
|
* later which is not a dropped frame.
|
||||||
*/
|
*/
|
||||||
if (dev->port_usb->supports_multi_frame)
|
if (dev->port_usb &&
|
||||||
|
dev->port_usb->supports_multi_frame)
|
||||||
goto multiframe;
|
goto multiframe;
|
||||||
goto drop;
|
goto drop;
|
||||||
}
|
}
|
||||||
|
|
Загрузка…
Ссылка в новой задаче