From 39f0329c4c749619974c8f0211d3e7f3b71be0ac Mon Sep 17 00:00:00 2001 From: Jiwoong Im Date: Tue, 11 Jul 2017 17:54:21 +0900 Subject: [PATCH] Fix incorrect parameter in NULL check Change-Id: Ie207266b3c7b700c2de28a98236c7ac346a71902 Signed-off-by: Jiwoong Im --- src/message-port.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()) -- 2.7.4