[Bf-blender-cvs] [6636558] master: Hopefully fix mingw building after filebrowser rewrite.

Bastien Montagne noreply at git.blender.org
Thu Aug 20 10:17:54 CEST 2015


Commit: 66365589ff4c18ad06f6ff268351773833f02bea
Author: Bastien Montagne
Date:   Thu Aug 20 10:15:08 2015 +0200
Branches: master
https://developer.blender.org/rB66365589ff4c18ad06f6ff268351773833f02bea

Hopefully fix mingw building after filebrowser rewrite.

The mystery here is, how MSVC could not break on such error? :(

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

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

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

diff --git a/source/blender/blenlib/intern/fileops.c b/source/blender/blenlib/intern/fileops.c
index bf9daea..bb75db7 100644
--- a/source/blender/blenlib/intern/fileops.c
+++ b/source/blender/blenlib/intern/fileops.c
@@ -342,7 +342,7 @@ static bool delete_recursive(const char *dir)
 		err = true;
 	}
 
-	BLI_filelist_free(filelist, nbr, NULL);
+	BLI_filelist_free(filelist, nbr);
 
 	return err;
 }




More information about the Bf-blender-cvs mailing list