Fix #527: source directory is not writable
authorColin Clark <colin.clark@cclark.uk>
Sun, 15 Oct 2017 18:46:31 +0000 (19:46 +0100)
committerColin Clark <colin.clark@cclark.uk>
Sun, 15 Oct 2017 18:46:31 +0000 (19:46 +0100)
https://github.com/BestImageViewer/geeqie/issues/527

The case of a file being in the root ( / ) folder not taken into account

src/ui_fileops.c

index 99a8216..ad015b2 100644 (file)
@@ -744,7 +744,9 @@ gchar *remove_level_from_path(const gchar *path)
        if (!path) return NULL;
 
        base = strrchr(path, G_DIR_SEPARATOR);
-       if (base) return g_strndup(path, strlen(path)-strlen(base));
+       /* Take account of a file being in the root ( / ) folder - ensure the returned value
+        * is at least one character long */
+       if (base) return g_strndup(path, (strlen(path)-strlen(base)) == 0 ? 1 : (strlen(path)-strlen(base)));
 
        return NULL;
 }