From: Andrej Kacian Date: Sat, 24 Sep 2016 22:19:50 +0000 (+0200) Subject: Fix absolute path detection in mh_create_tree() on Windows. X-Git-Tag: 3.14.1~44 X-Git-Url: http://git.claws-mail.org/?p=claws.git;a=commitdiff_plain;h=94fb81e08689930bb236c163d30d7bb65dfac5f4;hp=20ece29edf92ee9aa6e8e80a4cec0842b162108c Fix absolute path detection in mh_create_tree() on Windows. --- 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);