Fix incorrect parameter in NULL check 55/138155/1
authorJiwoong Im <jiwoong.im@samsung.com>
Tue, 11 Jul 2017 08:54:21 +0000 (17:54 +0900)
committerJiwoong Im <jiwoong.im@samsung.com>
Tue, 11 Jul 2017 08:54:21 +0000 (17:54 +0900)
Change-Id: Ie207266b3c7b700c2de28a98236c7ac346a71902
Signed-off-by: Jiwoong Im <jiwoong.im@samsung.com>
src/message-port.c

index 3a0a29e..fa96345 100755 (executable)
@@ -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())