From: mk5004.lee Date: Mon, 9 Mar 2020 12:20:10 +0000 (+0900) Subject: Fix bug in noti_ex_item_get_extension_data X-Git-Tag: submit/tizen_5.5/20200310.010418^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=22f5c899d0e0ee67f162e00dc5d8f55647aa45b9;p=platform%2Fcore%2Fapi%2Fnotification.git Fix bug in noti_ex_item_get_extension_data Change-Id: I66ff6480ce265aea5fe9c54a264e027e6fadcee4 Signed-off-by: mk5004.lee --- diff --git a/notification-ex/stub.cc b/notification-ex/stub.cc index 0698fa61..66b18bec 100644 --- a/notification-ex/stub.cc +++ b/notification-ex/stub.cc @@ -2534,7 +2534,7 @@ extern "C" EXPORT_API int noti_ex_item_get_extension_data(noti_ex_item_h handle, if (b.GetCount() == 0) *value = nullptr; else - *value = b.GetHandle(); + *value = bundle_dup(b.GetHandle()); return NOTI_EX_ERROR_NONE; }