summaryrefslogtreecommitdiffstats
path: root/src/util.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/util.c')
-rw-r--r--src/util.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/util.c b/src/util.c
index 1daf0ac..306a3a4 100644
--- a/src/util.c
+++ b/src/util.c
@@ -587,13 +587,14 @@ lilv_mkdir_p(const char* dir_path)
#endif
for (; i <= path_len; ++i) {
- if (path[i] == LILV_DIR_SEP[0] || path[i] == '\0') {
+ const char c = path[i];
+ if (c == LILV_DIR_SEP[0] || c == '/' || c == '\0') {
path[i] = '\0';
if (mkdir(path, 0755) && errno != EEXIST) {
free(path);
return errno;
}
- path[i] = LILV_DIR_SEP[0];
+ path[i] = c;
}
}