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
path: root/source
diff options
context:
space:
mode:
authorBastien Montagne <bastien@blender.org>2020-05-22 00:20:29 +0300
committerBastien Montagne <bastien@blender.org>2020-05-22 00:20:29 +0300
commit8f21f867e7159b9c1bfb9fd72d2ebae14c7f4742 (patch)
tree5ae4639e0e3969cebd56b3156963e764c18e1724 /source
parent70c483e7db2ad6bbb1daec5a6081005fc8660682 (diff)
Fix T76949: Crash When Selecting Materials Tab.
Dummy typo in own recent libquery refactor, of course that one missed change was on a line not covered by our tests or the production file used for validation...
Diffstat (limited to 'source')
-rw-r--r--source/blender/blenkernel/intern/object.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/object.c b/source/blender/blenkernel/intern/object.c
index 6d0064f34f3..d17575195e3 100644
--- a/source/blender/blenkernel/intern/object.c
+++ b/source/blender/blenkernel/intern/object.c
@@ -505,7 +505,7 @@ static void object_foreach_id(ID *id, LibraryForeachIDData *data)
BKE_modifiers_foreach_ID_link(object, library_foreach_modifiersForeachIDLink, data);
BKE_gpencil_modifiers_foreach_ID_link(
- object, library_foreach_gpencil_modifiersForeachIDLink, &data);
+ object, library_foreach_gpencil_modifiersForeachIDLink, data);
BKE_constraints_id_loop(&object->constraints, library_foreach_constraintObjectLooper, data);
BKE_shaderfx_foreach_ID_link(object, library_foreach_shaderfxForeachIDLink, data);