From: Johan Hovold Date: Thu, 25 Oct 2012 11:35:10 +0000 (+0200) Subject: USB: mos7840: fix port-device leak in error path X-Git-Tag: v3.6.5~34 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=da0d04fd143824b6d2657c267a8a09517194370b;p=karo-tx-linux.git USB: mos7840: fix port-device leak in error path commit 3eb55cc4ed88eee3b5230f66abcdbd2a91639eda upstream. The driver set the usb-serial port pointers to NULL on errors in attach, effectively preventing usb-serial core from decrementing the port ref counters and releasing the port devices and associated data. Signed-off-by: Johan Hovold Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/usb/serial/mos7840.c b/drivers/usb/serial/mos7840.c index 23c06fd4a157..bff3f8e87987 100644 --- a/drivers/usb/serial/mos7840.c +++ b/drivers/usb/serial/mos7840.c @@ -2684,7 +2684,6 @@ error: kfree(mos7840_port->ctrl_buf); usb_free_urb(mos7840_port->control_urb); kfree(mos7840_port); - serial->port[i] = NULL; } return status; }