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 <bastien@blender.org>2022-01-17 16:21:53 +0300
committerBastien Montagne <bastien@blender.org>2022-01-17 16:22:59 +0300
commit08822801acf648d23791fa308ec8c1c26f86963e (patch)
treeb8f15e66277700ccdc5d6c8b7c7eb3728f91182f
parent04feaa8bd0569a5453bec7a282f3f4a593eeb6ff (diff)
Fix T94805: Library weak reference generates "path not found" reports.
No reason to handle those paths here, those are fully internal temp data, user should not be exposed to it currently.
-rw-r--r--source/blender/blenkernel/intern/bpath.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/bpath.c b/source/blender/blenkernel/intern/bpath.c
index 44ef3ec96ff..a1570b4e031 100644
--- a/source/blender/blenkernel/intern/bpath.c
+++ b/source/blender/blenkernel/intern/bpath.c
@@ -237,7 +237,7 @@ void BKE_bpath_missing_files_check(Main *bmain, ReportList *reports)
.bmain = bmain,
.callback_function = check_missing_files_foreach_path_cb,
.flag = BKE_BPATH_FOREACH_PATH_ABSOLUTE | BKE_BPATH_FOREACH_PATH_SKIP_PACKED |
- BKE_BPATH_FOREACH_PATH_RESOLVE_TOKEN,
+ BKE_BPATH_FOREACH_PATH_RESOLVE_TOKEN | BKE_BPATH_TRAVERSE_SKIP_WEAK_REFERENCES,
.user_data = reports});
}