From 94fb81e08689930bb236c163d30d7bb65dfac5f4 Mon Sep 17 00:00:00 2001 From: Andrej Kacian Date: Sun, 25 Sep 2016 00:19:50 +0200 Subject: [PATCH] Fix absolute path detection in mh_create_tree() on Windows. --- src/mh.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mh.c b/src/mh.c index 3798c64cc..a54de02ba 100644 --- a/src/mh.c +++ b/src/mh.c @@ -792,7 +792,7 @@ static gint mh_create_tree(Folder *folder) #ifdef G_OS_UNIX if (*rootpath == '/') { #elif defined G_OS_WIN32 - if (g_ascii_isalpha(*rootpath) && !strncmp(rootpath + 1, "\:", 2)) { + if (g_ascii_isalpha(*rootpath) && !strncmp(rootpath + 1, ":\\", 2)) { #endif /* Folder path is absolute. */ rootpath = g_strdup(rootpath); -- 2.25.1