[Bf-blender-cvs] [1893e5e] master: Missed essential part in previous commit.

Bastien Montagne noreply at git.blender.org
Sun Jul 12 19:05:46 CEST 2015


Commit: 1893e5e4c285f5dad18e222060de74a9891120dd
Author: Bastien Montagne
Date:   Sun Jul 12 19:04:31 2015 +0200
Branches: master
https://developer.blender.org/rB1893e5e4c285f5dad18e222060de74a9891120dd

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.

===================================================================

M	source/blender/blenlib/intern/fileops.c

===================================================================

diff --git a/source/blender/blenlib/intern/fileops.c b/source/blender/blenlib/intern/fileops.c
index 5af59a3..f074619 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;
 			}
 		}




More information about the Bf-blender-cvs mailing list