aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/evas/src/lib/file/evas_path.c
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/evas/src/lib/file/evas_path.c')
-rw-r--r--libraries/evas/src/lib/file/evas_path.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/libraries/evas/src/lib/file/evas_path.c b/libraries/evas/src/lib/file/evas_path.c
index c663c16..2ff646d 100644
--- a/libraries/evas/src/lib/file/evas_path.c
+++ b/libraries/evas/src/lib/file/evas_path.c
@@ -38,9 +38,7 @@ evas_file_path_is_full_path(const char *path)
38#if defined _WIN32_WCE 38#if defined _WIN32_WCE
39 if (path[0] == '\\') return 1; 39 if (path[0] == '\\') return 1;
40#elif defined _WIN32 40#elif defined _WIN32
41 if ((path[0] == '\0') || (path[1] == '\0')) 41 if (evil_path_is_absolute(path)) return 1;
42 return 0;
43 if (path[1] == ':') return 1;
44#else 42#else
45 if (path[0] == '/') return 1; 43 if (path[0] == '/') return 1;
46#endif 44#endif