fix T50899: Even though the Shrinkwrap options hide the possibility of using a non-mesh target, you can still circumvent this... Causing Crash
This commit is contained in:
@@ -588,8 +588,13 @@ void shrinkwrapModifier_deform(ShrinkwrapModifierData *smd, Object *ob, DerivedM
|
|||||||
DerivedMesh *ss_mesh = NULL;
|
DerivedMesh *ss_mesh = NULL;
|
||||||
ShrinkwrapCalcData calc = NULL_ShrinkwrapCalcData;
|
ShrinkwrapCalcData calc = NULL_ShrinkwrapCalcData;
|
||||||
|
|
||||||
/* remove loop dependencies on derived meshes (TODO should this be done elsewhere?) */
|
/* remove loop dependencies on derived meshes (TODO should this be done elsewhere?)
|
||||||
if (smd->target == ob) smd->target = NULL;
|
* This also ensure the object is of type OBJ_MESH avoiding crash in `object_get_derived_final` (see T50899). */
|
||||||
|
if (smd->target) {
|
||||||
|
if (smd->target->type != OB_MESH || smd->target == ob) {
|
||||||
|
smd->target = NULL;
|
||||||
|
}
|
||||||
|
}
|
||||||
if (smd->auxTarget == ob) smd->auxTarget = NULL;
|
if (smd->auxTarget == ob) smd->auxTarget = NULL;
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user