From: Jiwoong Im Date: Tue, 11 Jul 2017 08:54:21 +0000 (+0900) Subject: Fix incorrect parameter in NULL check X-Git-Tag: accepted/tizen/unified/20170724.020228~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F55%2F138155%2F1;p=platform%2Fcore%2Fappfw%2Fmessage-port.git Fix incorrect parameter in NULL check Change-Id: Ie207266b3c7b700c2de28a98236c7ac346a71902 Signed-off-by: Jiwoong Im --- diff --git a/src/message-port.c b/src/message-port.c index 3a0a29e..fa96345 100755 --- a/src/message-port.c +++ b/src/message-port.c @@ -1446,7 +1446,7 @@ static bool __initialize(void) if (__callback_info_hash == NULL) { __callback_info_hash = g_hash_table_new_full(g_direct_hash, g_direct_equal, NULL, __hash_destroy_callback_info); - retvm_if(!__trusted_app_list_hash, false, "fail to create __trusted_app_list_hash"); + retvm_if(!__callback_info_hash, false, "fail to create __callback_info_hash"); } if (!__dbus_init())