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>2018-04-20 12:01:29 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2018-04-20 12:01:29 +0300
commitbf63fee23efad5f321ad16e9e90290e8879cb614 (patch)
tree99cbf227238d912c0dc15666a3757a72b5fb15e7
parent3c524178bcbbcf3fd9b98f24409481ed061a38aa (diff)
parentac8f6413ccce2efe08f6a9a1a3de3c05c8d0d1d4 (diff)
Merge branch 'master' into blender2.8
-rw-r--r--source/blender/blenloader/intern/blend_validate.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/blenloader/intern/blend_validate.c b/source/blender/blenloader/intern/blend_validate.c
index d44497e3145..d155fcfaa0d 100644
--- a/source/blender/blenloader/intern/blend_validate.c
+++ b/source/blender/blenloader/intern/blend_validate.c
@@ -81,7 +81,8 @@ bool BLO_main_validate_libraries(struct Main *bmain, struct ReportList *reports)
continue;
}
- BlendHandle *bh = BLO_blendhandle_from_file(curlib->name, reports);
+ BKE_library_filepath_set(curlib, curlib->name);
+ BlendHandle *bh = BLO_blendhandle_from_file(curlib->filepath, reports);
if (bh == NULL) {
continue;