diff options
author | Denis Kenzior <denkenz@gmail.com> | 2010-08-20 15:55:29 -0500 |
---|---|---|
committer | Denis Kenzior <denkenz@gmail.com> | 2010-08-20 16:15:11 -0500 |
commit | f42e563c51e11585aaf252ed78a9b729cef3bb37 (patch) | |
tree | 361942da25e1d05dca62e6a5a4709dfc7c6dcce6 | |
parent | 3edb2e90abe3ee6a8c62a4c7fc33a10c507ddb6f (diff) | |
download | ofono-f42e563c51e11585aaf252ed78a9b729cef3bb37.tar.bz2 |
voicecall: Fix memory leak
-rw-r--r-- | src/voicecall.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/voicecall.c b/src/voicecall.c index fbf9f9c5..e01f4f2b 100644 --- a/src/voicecall.c +++ b/src/voicecall.c @@ -1231,6 +1231,8 @@ static void multiparty_callback_common(struct ofono_voicecall *vc, DBUS_TYPE_OBJECT_PATH, &objpath_list[i]); dbus_message_iter_close_container(&iter, &array_iter); + + g_strfreev(objpath_list); } static void private_chat_callback(const struct ofono_error *error, void *data) |