From: Andrei Emeltchenko <andrei.emeltchenko@xxxxxxxxx> --- android/socket.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/android/socket.c b/android/socket.c index d8e922d..5862c9c 100644 --- a/android/socket.c +++ b/android/socket.c @@ -613,6 +613,7 @@ void bt_sock_handle_cmd(int sk, uint8_t opcode, void *buf, uint16_t len) break; ipc_send(sk, HAL_SERVICE_ID_SOCK, opcode, 0, NULL, fd); + close(fd); return; case HAL_OP_SOCK_CONNECT: fd = handle_connect(buf); @@ -620,6 +621,7 @@ void bt_sock_handle_cmd(int sk, uint8_t opcode, void *buf, uint16_t len) break; ipc_send(sk, HAL_SERVICE_ID_SOCK, opcode, 0, NULL, fd); + close(fd); return; default: DBG("Unhandled command, opcode 0x%x", opcode); -- 1.7.10.4 -- 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