Missed keyIndex data existment check when the whole nurb is deleting

This commit is contained in:
2010-08-03 23:04:45 +00:00
parent 33a6ba99ca
commit 44d51f3f64

View File

@@ -397,6 +397,10 @@ static void keyIndex_delNurb(EditNurb *editnurb, Nurb *nu)
{
int a;
if (!editnurb->keyindex) {
return;
}
if (nu->bezt) {
BezTriple *bezt= nu->bezt;
a= nu->pntsu;