summaryrefslogtreecommitdiff
path: root/tools/usb
diff options
context:
space:
mode:
authorHewenliang <hewenliang4@huawei.com>2019-10-25 00:35:15 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2019-11-29 10:10:21 +0100
commit9b6ae97d2356e875d6b9113e46cce5ca700ed67f (patch)
treef9268f81a6310091629e2b7327f69292489067bd /tools/usb
parent8c22dc75848f8c6404b1a213aba68b712f17eee3 (diff)
usbip: tools: fix fd leakage in the function of read_attr_usbip_status
commit 26a4d4c00f85cb844dd11dd35e848b079c2f5e8f upstream. We should close the fd before the return of read_attr_usbip_status. Fixes: 3391ba0e2792 ("usbip: tools: Extract generic code to be shared with vudc backend") Signed-off-by: Hewenliang <hewenliang4@huawei.com> Cc: stable <stable@vger.kernel.org> Link: https://lore.kernel.org/r/20191025043515.20053-1-hewenliang4@huawei.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'tools/usb')
-rw-r--r--tools/usb/usbip/libsrc/usbip_host_common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/usb/usbip/libsrc/usbip_host_common.c b/tools/usb/usbip/libsrc/usbip_host_common.c
index 2813aa821c82..d1d8ba2a4a40 100644
--- a/tools/usb/usbip/libsrc/usbip_host_common.c
+++ b/tools/usb/usbip/libsrc/usbip_host_common.c
@@ -57,7 +57,7 @@ static int32_t read_attr_usbip_status(struct usbip_usb_device *udev)
}
value = atoi(status);
-
+ close(fd);
return value;
}