From c3d86fec64a5ce8225bb14e9d0094c58f23d59be Mon Sep 17 00:00:00 2001 From: Vinicius Costa Gomes Date: Mon, 15 Sep 2008 17:43:58 -0300 Subject: [PATCH] obexd: Adding a missing unref after sending a message on auth_error() --- obexd/src/manager.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/obexd/src/manager.c b/obexd/src/manager.c index 2c8468048..8c14061c3 100644 --- a/obexd/src/manager.c +++ b/obexd/src/manager.c @@ -481,6 +481,8 @@ static gboolean auth_error(GIOChannel *io, GIOCondition cond, dbus_connection_send_with_reply(connection, msg, NULL, -1); + dbus_message_unref(msg); + return FALSE; } -- 2.47.3