diff options
author | mk5004.lee <mk5004.lee@samsung.com> | 2020-03-09 21:20:10 +0900 |
---|---|---|
committer | mk5004.lee <mk5004.lee@samsung.com> | 2020-03-09 21:20:10 +0900 |
commit | 22f5c899d0e0ee67f162e00dc5d8f55647aa45b9 (patch) | |
tree | e7962fff98ffca6c1983adcdfdc0d5451703a0d5 | |
parent | 312a7c643dad859422a48e8a251f624bd244ace9 (diff) | |
download | notification-22f5c899d0e0ee67f162e00dc5d8f55647aa45b9.tar.gz notification-22f5c899d0e0ee67f162e00dc5d8f55647aa45b9.tar.bz2 notification-22f5c899d0e0ee67f162e00dc5d8f55647aa45b9.zip |
Fix bug in noti_ex_item_get_extension_data
Change-Id: I66ff6480ce265aea5fe9c54a264e027e6fadcee4
Signed-off-by: mk5004.lee <mk5004.lee@samsung.com>
-rw-r--r-- | notification-ex/stub.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/notification-ex/stub.cc b/notification-ex/stub.cc index 0698fa6..66b18be 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; } |