diff options
Diffstat (limited to 'drivers/usb')
-rw-r--r-- | drivers/usb/serial/generic.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/usb/serial/generic.c b/drivers/usb/serial/generic.c index fcd30b841559..a817ced82835 100644 --- a/drivers/usb/serial/generic.c +++ b/drivers/usb/serial/generic.c | |||
@@ -324,6 +324,9 @@ void usb_serial_generic_process_read_urb(struct urb *urb) | |||
324 | char *ch = (char *)urb->transfer_buffer; | 324 | char *ch = (char *)urb->transfer_buffer; |
325 | int i; | 325 | int i; |
326 | 326 | ||
327 | if (!urb->actual_length) | ||
328 | return; | ||
329 | |||
327 | tty = tty_port_tty_get(&port->port); | 330 | tty = tty_port_tty_get(&port->port); |
328 | if (!tty) | 331 | if (!tty) |
329 | return; | 332 | return; |