Fix T42486: Array modifier cap-end crash

Thanks to @PatB for the fix.
This commit is contained in:
Campbell Barton 2014-11-10 09:55:25 +01:00
parent 6c5e2ac7e6
commit 723f1e950b
Notes: blender-bot 2023-02-14 09:51:52 +01:00
Referenced by issue #42486, Crash on opening file
1 changed files with 2 additions and 2 deletions

View File

@ -323,8 +323,8 @@ static void dm_merge_transform(
/* needed for subsurf so arrays are allocated */
cap_dm->getVertArray(cap_dm);
cap_dm->getEdgeArray(cap_dm);
cap_dm->getNumLoops(cap_dm);
cap_dm->getNumPolys(cap_dm);
cap_dm->getLoopArray(cap_dm);
cap_dm->getPolyArray(cap_dm);
DM_copy_vert_data(cap_dm, result, 0, cap_verts_index, cap_nverts);
DM_copy_edge_data(cap_dm, result, 0, cap_edges_index, cap_nedges);