Skip to content
Commit f6194bcf authored by David B. Robins's avatar David B. Robins Committed by David S. Miller
Browse files

net: usb: asix: Fix crash on skb alloc failure



If asix_rx_fixup_internal() fails to allocate rx->ax_skb, it will return
but not clear rx->size. rx points to driver private data. A later call
assumes that nonzero size means ax_skb was allocated and passes a null
ax_skb to skb_put. Changed allocation failure return to clear size first.

Found testing board with AX88772B devices.

Signed-off-by: default avatarDavid B. Robins <linux@davidrobins.net>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 74910ea4
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment