Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Montagne <montagne29@wanadoo.fr>2015-07-12 20:04:31 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2015-07-12 20:04:31 +0300
commit1893e5e4c285f5dad18e222060de74a9891120dd (patch)
treea2b0d2bf05918841fa0ba3d1b6ed5e4bd82c11f4 /source/blender/blenlib/intern/fileops.c
parent7e9c347c8c23b3e396b1ecfd418272c8a96a7096 (diff)
Missed essential part in previous commit.
Or how to epic fail a fix when working on two different systems. Or how to increase your commit rate.
Diffstat (limited to 'source/blender/blenlib/intern/fileops.c')
-rw-r--r--source/blender/blenlib/intern/fileops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/intern/fileops.c b/source/blender/blenlib/intern/fileops.c
index 5af59a32e09..f074619aeee 100644
--- a/source/blender/blenlib/intern/fileops.c
+++ b/source/blender/blenlib/intern/fileops.c
@@ -328,7 +328,7 @@ static bool delete_recursive(const char *dir)
BLI_strncpy(path, fl->path, sizeof(path));
BLI_add_slash(path);
- if (delete_recursive(fl->path)) {
+ if (delete_recursive(path)) {
err = true;
}
}