Fix the log position to avoid errno change. (errno can be changed when using dlog) 13/197113/2 accepted/tizen/unified/20190111.055138 submit/tizen/20190109.233706
authorjiyong.min <jiyong.min@samsung.com>
Wed, 9 Jan 2019 23:03:43 +0000 (08:03 +0900)
committerjiyong.min <jiyong.min@samsung.com>
Wed, 9 Jan 2019 23:18:08 +0000 (08:18 +0900)
Change-Id: I4a81986414f8a5b5dc252b888c19410bc324b1a1

src/media_util_private.c

index d27bbb1..65b7a1a 100755 (executable)
@@ -64,12 +64,15 @@ int _media_util_check_file_exist(const char *path)
        /* check the file exits actually */
        exist = open(path, O_RDONLY);
        if (exist < 0) {
-               media_content_sec_debug("path [%s]", path);
-               media_content_stderror("open file fail");
-               if (errno == EACCES || errno == EPERM)
+               if (errno == EACCES || errno == EPERM) {
+                       media_content_stderror("open file fail");
+                       media_content_sec_debug("path [%s]", path);
                        return MEDIA_CONTENT_ERROR_PERMISSION_DENIED;
-               else
+               } else {
+                       media_content_stderror("open file fail");
+                       media_content_sec_debug("path [%s]", path);
                        return MEDIA_CONTENT_ERROR_INVALID_PARAMETER;
+               }
        }
 
        close(exist);