mirror of
https://github.com/lwfinger/rtl8188eu.git
synced 2024-11-09 23:19:39 +00:00
r8188eu: Fix skb leak in usb_read_port_complete()
In the completion routine for a usb_fill_bulk_urb() call, an skb is leaked whenever the status of the USB transaction is not zero. A call to skb_put() is needed to fix the problem. Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
This commit is contained in:
parent
b49674fa29
commit
f4d1258158
1 changed files with 2 additions and 0 deletions
|
@ -555,6 +555,8 @@ static void usb_read_port_complete(struct urb *purb, struct pt_regs *regs)
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
RT_TRACE(_module_hci_ops_os_c_, _drv_err_, ("usb_read_port_complete : purb->status(%d) != 0\n", purb->status));
|
RT_TRACE(_module_hci_ops_os_c_, _drv_err_, ("usb_read_port_complete : purb->status(%d) != 0\n", purb->status));
|
||||||
|
skb_put(precvbuf->pskb, purb->actual_length);
|
||||||
|
precvbuf->pskb = NULL;
|
||||||
|
|
||||||
DBG_88E("###=> usb_read_port_complete => urb status(%d)\n", purb->status);
|
DBG_88E("###=> usb_read_port_complete => urb status(%d)\n", purb->status);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue