From: Myungki Lee Date: Thu, 9 Jun 2016 12:22:47 +0000 (+0900) Subject: Insert to noti->b_text the translate text X-Git-Tag: submit/tizen/20160610.015635^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=93d4e471e63ce5df8cc0bfe8993b8a1cf6ee9b70;p=platform%2Fcore%2Fapi%2Fnotification.git Insert to noti->b_text the translate text - when noti->b_text is null, bundle create and insert data. But this bundle addr is different from noti->b_text. Change-Id: Idf41cf97ab7b78cc81f1df79065448f7191bfd3d Signed-off-by: Myungki Lee --- diff --git a/src/notification_internal.c b/src/notification_internal.c index ed0aab98..2d6b69f6 100755 --- a/src/notification_internal.c +++ b/src/notification_internal.c @@ -366,9 +366,13 @@ EXPORT_API int notification_translate_localized_text(notification_h noti) for (; type < NOTIFICATION_TEXT_TYPE_MAX; type++) { noti_err = notification_get_text(noti, type, &ret_text); if (noti_err == NOTIFICATION_ERROR_NONE && ret_text) { + if (noti->b_text == NULL) { + noti->b_text = bundle_create(); + if (noti->b_text == NULL) + return NOTIFICATION_ERROR_OUT_OF_MEMORY; + } + b = noti->b_text; - if (b == NULL) - b = bundle_create(); new_text = strdup(ret_text);