From: Andrei Emeltchenko <andrei.emeltchenko@xxxxxxxxx> This fix possible memory leak. --- android/hidhost.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/android/hidhost.c b/android/hidhost.c index d50c5b8..1f5aa5d 100644 --- a/android/hidhost.c +++ b/android/hidhost.c @@ -1219,8 +1219,12 @@ bool bt_hid_register(int sk, const bdaddr_t *addr) BT_IO_OPT_INVALID); if (!intr_io) { error("Failed to listen on intr channel: %s", err->message); - g_io_channel_unref(ctrl_io); g_error_free(err); + + g_io_channel_shutdown(ctrl_io, TRUE, NULL); + g_io_channel_unref(ctrl_io); + ctrl_io = NULL; + return false; } -- 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