mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-12-29 17:25:38 +00:00
usbip: tools: Fix detach_port() invalid port error path
commite7cd4b811c
upstream. The detach_port() doesn't return error when detach is attempted on an invalid port. Fixes:40ecdeb1a1
("usbip: usbip_detach: fix to check for invalid ports") Cc: stable@vger.kernel.org Reviewed-by: Hongren Zheng <i@zenithal.me> Reviewed-by: Shuah Khan <skhan@linuxfoundation.org> Signed-off-by: Zongmin Zhou <zhouzongmin@kylinos.cn> Link: https://lore.kernel.org/r/20241024022700.1236660-1-min_halo@163.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
93bb7700b7
commit
1bdd6270ea
@ -68,6 +68,7 @@ static int detach_port(char *port)
|
||||
}
|
||||
|
||||
if (!found) {
|
||||
ret = -1;
|
||||
err("Invalid port %s > maxports %d",
|
||||
port, vhci_driver->nports);
|
||||
goto call_driver_close;
|
||||
|
Loading…
Reference in New Issue
Block a user