diff options
Diffstat (limited to 'drivers/usb')
-rw-r--r-- | drivers/usb/serial/opticon.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/usb/serial/opticon.c b/drivers/usb/serial/opticon.c index 459c28889fe4..6aba731d4864 100644 --- a/drivers/usb/serial/opticon.c +++ b/drivers/usb/serial/opticon.c | |||
@@ -286,7 +286,7 @@ static int opticon_write(struct tty_struct *tty, struct usb_serial_port *port, | |||
286 | if (!dr) { | 286 | if (!dr) { |
287 | dev_err(&port->dev, "out of memory\n"); | 287 | dev_err(&port->dev, "out of memory\n"); |
288 | count = -ENOMEM; | 288 | count = -ENOMEM; |
289 | goto error; | 289 | goto error_no_dr; |
290 | } | 290 | } |
291 | 291 | ||
292 | dr->bRequestType = USB_TYPE_VENDOR | USB_RECIP_INTERFACE | USB_DIR_OUT; | 292 | dr->bRequestType = USB_TYPE_VENDOR | USB_RECIP_INTERFACE | USB_DIR_OUT; |
@@ -316,6 +316,8 @@ static int opticon_write(struct tty_struct *tty, struct usb_serial_port *port, | |||
316 | 316 | ||
317 | return count; | 317 | return count; |
318 | error: | 318 | error: |
319 | kfree(dr); | ||
320 | error_no_dr: | ||
319 | usb_free_urb(urb); | 321 | usb_free_urb(urb); |
320 | error_no_urb: | 322 | error_no_urb: |
321 | kfree(buffer); | 323 | kfree(buffer); |