From: Johan Hovold Date: Thu, 25 Oct 2012 08:29:12 +0000 (+0200) Subject: USB: opticon: fix memory leak in error path X-Git-Tag: v3.2.33~23 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=5faf945e7a99b828ecfee43871aee19ec0a03876;p=karo-tx-linux.git USB: opticon: fix memory leak in error path commit acbf0e5263de563e25f7c104868e4490b9e72b13 upstream. Fix memory leak in write error path. Signed-off-by: Johan Hovold Signed-off-by: Greg Kroah-Hartman Signed-off-by: Ben Hutchings --- diff --git a/drivers/usb/serial/opticon.c b/drivers/usb/serial/opticon.c index 5b83e10b6b63..d6c5ed62c1cb 100644 --- a/drivers/usb/serial/opticon.c +++ b/drivers/usb/serial/opticon.c @@ -297,7 +297,7 @@ static int opticon_write(struct tty_struct *tty, struct usb_serial_port *port, if (!dr) { dev_err(&port->dev, "out of memory\n"); count = -ENOMEM; - goto error; + goto error_no_dr; } dr->bRequestType = USB_TYPE_VENDOR | USB_RECIP_INTERFACE | USB_DIR_OUT; @@ -327,6 +327,8 @@ static int opticon_write(struct tty_struct *tty, struct usb_serial_port *port, return count; error: + kfree(dr); +error_no_dr: usb_free_urb(urb); error_no_urb: kfree(buffer);