X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fmedia_util_private.c;h=52c65dedc82193914d786c5d8d6e50e290d22ce5;hb=f54faf3f54cd50adced5de846dc41e67a14c7743;hp=2a383a808dbd661d4865ee8a7686e66c3c2999ae;hpb=ab1f1cd8c7971c42f104e2d8916e0670e5393d9d;p=platform%2Fcore%2Fapi%2Fmedia-content.git diff --git a/src/media_util_private.c b/src/media_util_private.c index 2a383a8..52c65de 100755 --- a/src/media_util_private.c +++ b/src/media_util_private.c @@ -136,9 +136,9 @@ bool _media_util_is_ignorable_file(const char *path) return true; } #else - if (g_str_has_prefix(tmp_path, MEDIA_SHARE_PATH)) { + if (g_str_has_prefix(tmp_path, tzplatform_getenv(TZ_SYS_MEDIASHARED))) { /* If shared directory, it should be change path to TZ_USER_SHARE from realpath */ - snprintf(replace, MAX_PATH_LEN, "%s%s", tzplatform_getenv(TZ_USER_MEDIASHARED), tmp_path + strlen(MEDIA_SHARE_PATH)); + snprintf(replace, MAX_PATH_LEN, "%s%s", tzplatform_getenv(TZ_USER_MEDIASHARED), tmp_path + strlen(tzplatform_getenv(TZ_SYS_MEDIASHARED))); if (g_strcmp0(replace, org_path) != 0) { content_error("symbolic link(directory)"); content_sec_debug("path[%s] real[%s]", org_path, tmp_path); @@ -259,9 +259,9 @@ int _media_content_check_dir(const char *path) return MEDIA_CONTENT_ERROR_INVALID_PARAMETER; } #else - if (g_str_has_prefix(real, MEDIA_SHARE_PATH)) { + if (g_str_has_prefix(real, tzplatform_getenv(TZ_SYS_MEDIASHARED))) { /* If shared directory, it should be change path to TZ_USER_SHARE from realpath */ - snprintf(result_path, MAX_PATH_LEN, "%s%s", tzplatform_getenv(TZ_USER_MEDIASHARED), real + strlen(MEDIA_SHARE_PATH)); + snprintf(result_path, MAX_PATH_LEN, "%s%s", tzplatform_getenv(TZ_USER_MEDIASHARED), real + strlen(tzplatform_getenv(TZ_SYS_MEDIASHARED))); if (g_strcmp0(result_path, origin) != 0) { content_error("symbolic link(directory)"); content_sec_debug("path[%s] real[%s]", origin, real);