diff options
author | Ben Chan <benchan@chromium.org> | 2017-06-23 00:14:57 -0700 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2017-06-23 10:09:08 +0200 |
commit | 9920f868ebb4d3a1b645cccf2f473d5d51b4c29e (patch) | |
tree | bc125f7cd9a1050bc7569a873bc540b4e475ff09 /libmm-glib | |
parent | c927c0236e5762ef9244c8e3369acd2cf1cf21a3 (diff) |
libmm-glib,voice: fix object unref in list_call_context_complete_and_free
Diffstat (limited to 'libmm-glib')
-rw-r--r-- | libmm-glib/mm-modem-voice.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libmm-glib/mm-modem-voice.c b/libmm-glib/mm-modem-voice.c index 1d649454..76cd7b6d 100644 --- a/libmm-glib/mm-modem-voice.c +++ b/libmm-glib/mm-modem-voice.c @@ -108,7 +108,7 @@ list_call_context_complete_and_free (ListCallsContext *ctx) g_object_unref (ctx->result); if (ctx->cancellable) g_object_unref (ctx->cancellable); - g_object_ref (ctx->self); + g_object_unref (ctx->self); g_slice_free (ListCallsContext, ctx); } |