summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJiwoong Im <jiwoong.im@samsung.com>2017-07-11 17:54:21 +0900
committerJiwoong Im <jiwoong.im@samsung.com>2017-07-11 17:54:21 +0900
commit39f0329c4c749619974c8f0211d3e7f3b71be0ac (patch)
tree3c2d6171ef3b237c7b15e325814602cff245cebd
parent4ccda24822efaf53237b93ab024703cc5c12ce18 (diff)
downloadmessage-port-39f0329c4c749619974c8f0211d3e7f3b71be0ac.tar.gz
message-port-39f0329c4c749619974c8f0211d3e7f3b71be0ac.tar.bz2
message-port-39f0329c4c749619974c8f0211d3e7f3b71be0ac.zip
Fix incorrect parameter in NULL check
Change-Id: Ie207266b3c7b700c2de28a98236c7ac346a71902 Signed-off-by: Jiwoong Im <jiwoong.im@samsung.com>
-rwxr-xr-xsrc/message-port.c2
1 files changed, 1 insertions, 1 deletions
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())