diff mbox series

usbip: tools: fix fd leakage in the function of read_attr_usbip_status

Message ID 20191025043515.20053-1-hewenliang4@huawei.com (mailing list archive)
State Mainlined
Commit 26a4d4c00f85cb844dd11dd35e848b079c2f5e8f
Headers show
Series usbip: tools: fix fd leakage in the function of read_attr_usbip_status | expand

Commit Message

Hewenliang Oct. 25, 2019, 4:35 a.m. UTC
We should close the fd before the return of read_attr_usbip_status.

Fixes: 3391ba0e279 ("usbip: tools: Extract generic code to be shared with vudc backend")
Signed-off-by: Hewenliang <hewenliang4@huawei.com>
---
 tools/usb/usbip/libsrc/usbip_host_common.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

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;
 }