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:
-rw-r--r--source/blender/editors/object/object_relations.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/source/blender/editors/object/object_relations.c b/source/blender/editors/object/object_relations.c
index c6d6a7b1c22..3166c9ddea1 100644
--- a/source/blender/editors/object/object_relations.c
+++ b/source/blender/editors/object/object_relations.c
@@ -417,7 +417,12 @@ static int make_proxy_exec(bContext *C, wmOperator *op)
* TODO(sergey): We really need to get rid of this bi-directional links
* in proxies with something like library overrides.
*/
- newob->proxy->proxy_from = newob;
+ if (newob->proxy != NULL) {
+ newob->proxy->proxy_from = newob;
+ }
+ else {
+ BKE_report(op->reports, RPT_ERROR, "Unable to assign proxy");
+ }
/* depsgraph flushes are needed for the new data */
DEG_relations_tag_update(bmain);