From 93bd117754caae35a9c9da50970169161c02949c Mon Sep 17 00:00:00 2001 From: "seungha.son" Date: Tue, 28 Jun 2016 16:45:49 +0900 Subject: [PATCH] Fix notification clone error Signed-off-by: seungha.son Change-Id: Ie22fb05ba77d9eb3b77cc4d134e8c7260fcc5ad3 --- src/notification.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/notification.c b/src/notification.c index 2e4f99a..f48e6b3 100755 --- a/src/notification.c +++ b/src/notification.c @@ -1714,6 +1714,11 @@ EXPORT_API int notification_clone(notification_h noti, notification_h *clone) else new_noti->b_key = NULL; + if (noti->tag != NULL) + new_noti->tag = strdup(noti->tag); + else + new_noti->tag = NULL; + if (noti->b_format_args != NULL) new_noti->b_format_args = bundle_dup(noti->b_format_args); else -- 2.7.4