From: brianjjones Date: Fri, 12 Apr 2013 23:11:54 +0000 (-0700) Subject: Fixing logic for when it checks for whether a call is active or not. Currently it... X-Git-Tag: accepted/2.0/20130415.172310^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d997f488b77ee4368eb767fd2a0f6960769ecc5d;p=profile%2Fivi%2Fug-camera-efl.git 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 --- 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;