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-08-20 11:15:08 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2015-08-20 11:15:08 +0300
commit66365589ff4c18ad06f6ff268351773833f02bea (patch)
treef8dbf63c256358f9c88125f7f2a1fd175d2fd35e /source/blender/blenlib/intern/fileops.c
parent176b806626ed62cb1bb9f609f927dc27e6e9c268 (diff)
Hopefully fix mingw building after filebrowser rewrite.
The mystery here is, how MSVC could not break on such error? :(
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 bf9daea7f7c..bb75db7f11e 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;
}