From d997f488b77ee4368eb767fd2a0f6960769ecc5d Mon Sep 17 00:00:00 2001 From: brianjjones Date: Fri, 12 Apr 2013 16:11:54 -0700 Subject: [PATCH] Fixing logic for when it checks for whether a call is active or not. Currently it was returning true if it couldn't find the VCONF key, should return false --- src/camera_utils.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/camera_utils.c b/src/camera_utils.c index 903baec..745463d 100755 --- a/src/camera_utils.c +++ b/src/camera_utils.c @@ -130,6 +130,7 @@ gboolean cam_utils_check_call_running(void) } else { cam_warning(LOG_UI, "get setting failed %s", VCONFKEY_CALL_STATE); + return FALSE; } return TRUE; -- 2.7.4