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:
Diffstat (limited to 'source/blender/editors/space_file')
-rw-r--r--source/blender/editors/space_file/filelist.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/source/blender/editors/space_file/filelist.c b/source/blender/editors/space_file/filelist.c
index 0945e521dc7..c9133e803dd 100644
--- a/source/blender/editors/space_file/filelist.c
+++ b/source/blender/editors/space_file/filelist.c
@@ -1366,13 +1366,9 @@ const char *filelist_dir(struct FileList *filelist)
*/
void filelist_setdir(struct FileList *filelist, char *r_dir)
{
-#ifndef NDEBUG
- size_t len = strlen(r_dir);
- BLI_assert((len < FILE_MAX_LIBEXTRA) && ELEM(r_dir[len - 1], SEP, ALTSEP));
-#endif
+ BLI_assert(strlen(r_dir) < FILE_MAX_LIBEXTRA);
BLI_cleanup_dir(G.main->name, r_dir);
- BLI_add_slash(r_dir);
filelist->checkdirf(filelist, r_dir);
if (!STREQ(filelist->filelist.root, r_dir)) {