Fix T41039: Hook modifier sometimes fails to retain correct bezier curve point assignment

This commit is contained in:
Sergey Sharybin 2014-07-18 14:44:05 +06:00
parent 543f7b7053
commit 397bc87486
Notes: blender-bot 2023-02-14 10:21:15 +01:00
Referenced by issue #41039, Hook modifier sometimes fails to retain correct bezier curve point assignment (multiple curve segements?)
1 changed files with 1 additions and 1 deletions

View File

@ -1191,7 +1191,7 @@ static int *initialize_index_map(Object *obedit, int *r_old_totvert)
for (nu = editnurb->nurbs.first, vertex_index = 0;
nu != NULL;
nu = nu->next, vertex_index++)
nu = nu->next)
{
if (nu->bezt) {
BezTriple *bezt = nu->bezt;