diff options
author | seungha.son <seungha.son@samsung.com> | 2016-07-12 17:17:26 +0900 |
---|---|---|
committer | seungha.son <seungha.son@samsung.com> | 2016-07-12 17:23:14 +0900 |
commit | b3f70ef14ca3332731025c4a477b7ff8ab84d358 (patch) | |
tree | 255284b98227e8805c548c56006d86c4b63f9a2e | |
parent | 8d92dbfccb885d26408e3cc457c6c09b797e9edd (diff) | |
download | notification-accepted/tizen/ivi/20160712.132240.tar.gz notification-accepted/tizen/ivi/20160712.132240.tar.bz2 notification-accepted/tizen/ivi/20160712.132240.zip |
Fix wrong memory deallocationaccepted/tizen/wearable/20160712.132215accepted/tizen/tv/20160712.132200accepted/tizen/mobile/20160712.132138accepted/tizen/ivi/20160712.132240
Signed-off-by: seungha.son <seungha.son@samsung.com>
Change-Id: Ieb78caf17fd69e59d328655b2ba2832564c6b4bb
-rwxr-xr-x | src/notification_ipc.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/notification_ipc.c b/src/notification_ipc.c index 9bc45e7..90a913b 100755 --- a/src/notification_ipc.c +++ b/src/notification_ipc.c @@ -1047,7 +1047,6 @@ int notification_ipc_request_load_noti_grouping_list(notification_type_e type, i notification_ipc_make_noti_from_gvariant(noti, noti_body); *list = notification_list_append(*list, noti); g_variant_unref(noti_body); - g_variant_unref(iter_body); } g_variant_iter_free(iter); } @@ -1100,7 +1099,6 @@ int notification_ipc_request_load_noti_detail_list(const char *pkgname, notification_ipc_make_noti_from_gvariant(noti, noti_body); *list = notification_list_append(*list, noti); g_variant_unref(noti_body); - g_variant_unref(iter_body); } g_variant_iter_free(iter); } |