Evas: use evil_path_is_absolute()
authorcaro <caro@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Fri, 17 Feb 2012 21:35:57 +0000 (21:35 +0000)
committercaro <caro@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Fri, 17 Feb 2012 21:35:57 +0000 (21:35 +0000)
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/evas@68092 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

src/lib/file/evas_path.c

index c663c16..2ff646d 100644 (file)
@@ -38,9 +38,7 @@ evas_file_path_is_full_path(const char *path)
 #if defined _WIN32_WCE
    if (path[0] == '\\') return 1;
 #elif defined _WIN32
-   if ((path[0] == '\0') || (path[1] == '\0'))
-     return 0;
-   if (path[1] == ':') return 1;
+   if (evil_path_is_absolute(path)) return 1;
 #else
    if (path[0] == '/') return 1;
 #endif