[Bf-blender-cvs] [46585a49003] blender-v3.1-release: Fix (unreported) Crash in Array modifier.

Bastien Montagne noreply at git.blender.org
Thu Mar 24 09:07:12 CET 2022


Commit: 46585a49003c53f1d3de16563c3476868fd9dac9
Author: Bastien Montagne
Date:   Tue Mar 22 11:25:54 2022 +0100
Branches: blender-v3.1-release
https://developer.blender.org/rB46585a49003c53f1d3de16563c3476868fd9dac9

Fix (unreported) Crash in Array modifier.

Typo (copy/paste mistake) in rB923b28aab85768e2b.

===================================================================

M	source/blender/modifiers/intern/MOD_array.c

===================================================================

diff --git a/source/blender/modifiers/intern/MOD_array.c b/source/blender/modifiers/intern/MOD_array.c
index df02cc33507..abde2a48561 100644
--- a/source/blender/modifiers/intern/MOD_array.c
+++ b/source/blender/modifiers/intern/MOD_array.c
@@ -427,7 +427,7 @@ static Mesh *arrayModifier_doArray(ArrayModifierData *amd,
   }
   Object *end_cap_ob = amd->end_cap;
   if (end_cap_ob && end_cap_ob != ctx->object) {
-    if (start_cap_ob->type == OB_MESH && ctx->object->type == OB_MESH) {
+    if (end_cap_ob->type == OB_MESH && ctx->object->type == OB_MESH) {
       vgroup_end_cap_remap = BKE_object_defgroup_index_map_create(
           end_cap_ob, ctx->object, &vgroup_end_cap_remap_len);
     }



More information about the Bf-blender-cvs mailing list