While making TransData, with mixed selection of objects and ipokeys, the

transdata pointers were increased wrong, creating empty gaps (NULL)
This commit is contained in:
Ton Roosendaal 2005-05-29 22:39:49 +00:00
parent b1bd69c6f1
commit f26e4ca150

@ -2107,15 +2107,17 @@ static void createTransObject(TransInfo *t)
ObjectToTransData(td, ob); ObjectToTransData(td, ob);
td->tdi = NULL; td->tdi = NULL;
td->val = NULL; td->val = NULL;
td++;
tx++;
} }
} }
else { else {
ObjectToTransData(td, ob); ObjectToTransData(td, ob);
td->tdi = NULL; td->tdi = NULL;
td->val = NULL; td->val = NULL;
td++;
tx++;
} }
td++;
tx++;
} }
} }
} }