From: Andrei Emeltchenko <andrei.emeltchenko@xxxxxxxxx> Close file descriptors before leaving. --- tools/btproxy.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tools/btproxy.c b/tools/btproxy.c index be81bae..3503148 100644 --- a/tools/btproxy.c +++ b/tools/btproxy.c @@ -680,8 +680,11 @@ int main(int argc, char *argv[]) return EXIT_FAILURE; } - if (!setup_proxy(host_fd, false, dev_fd, true)) + if (!setup_proxy(host_fd, false, dev_fd, true)) { + close(dev_fd); + close(host_fd); return EXIT_FAILURE; + } } else { int server_fd; -- 1.8.3.2 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html