mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-04 18:19:28 +09:00
USB: serial: garmin_gps: fix memory leak on probe errors
commit74d471b598upstream. Make sure to free the port private data before returning after a failed probe attempt. Fixes:1da177e4c3("Linux-2.6.12-rc2") Reviewed-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Signed-off-by: Johan Hovold <johan@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
df2ca939fe
commit
3a5a567333
@@ -1413,6 +1413,12 @@ static int garmin_port_probe(struct usb_serial_port *port)
|
||||
usb_set_serial_port_data(port, garmin_data_p);
|
||||
|
||||
status = garmin_init_session(port);
|
||||
if (status)
|
||||
goto err_free;
|
||||
|
||||
return 0;
|
||||
err_free:
|
||||
kfree(garmin_data_p);
|
||||
|
||||
return status;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user