Hi Andrei, On Tue, Jul 29, 2014, Andrei Emeltchenko wrote: > Fixes memory leak for message_listing_cb() > --- > obexd/client/map.c | 4 +++- > 1 file changed, 3 insertions(+), 1 deletion(-) > > diff --git a/obexd/client/map.c b/obexd/client/map.c > index 331aebc..5d7f0dc 100644 > --- a/obexd/client/map.c > +++ b/obexd/client/map.c > @@ -1182,8 +1182,10 @@ static void message_listing_cb(struct obc_session *session, > } > > reply = dbus_message_new_method_return(request->msg); > - if (reply == NULL) > + if (reply == NULL) { > + g_free(contents); > return; > + } > Here also there seems to be a missing call to pending_request_free(). Might be simplest if you simply replace the return with goto done and then put the g_dbus_send_message call behind a NULL check (same applies to the previous patch). Johan -- 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