提交 d179f99a 编写于 作者: S Shuah Khan (Samsung OSG) 提交者: Greg Kroah-Hartman

usbip: usbip_detach: Fix memory, udev context and udev leak

detach_port() fails to call usbip_vhci_driver_close() from its error
path after usbip_vhci_detach_device() returns failure, leaking memory
allocated in usbip_vhci_driver_open() and holding udev_context and udev
references. Fix it to call usbip_vhci_driver_close().
Signed-off-by: NShuah Khan (Samsung OSG) <shuah@kernel.org>
Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
上级 edf38004
......@@ -43,7 +43,7 @@ void usbip_detach_usage(void)
static int detach_port(char *port)
{
int ret;
int ret = 0;
uint8_t portnum;
char path[PATH_MAX+1];
......@@ -73,9 +73,12 @@ static int detach_port(char *port)
}
ret = usbip_vhci_detach_device(portnum);
if (ret < 0)
return -1;
if (ret < 0) {
ret = -1;
goto call_driver_close;
}
call_driver_close:
usbip_vhci_driver_close();
return ret;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册