Fix for bug #17762: id property double type did not get copied correct.

This commit is contained in:
2008-10-05 01:15:58 +00:00
parent 6800c5725f
commit 2ad7aa100d

View File

@@ -111,6 +111,7 @@ void IDP_ResizeArray(IDProperty *prop, int newlen)
newp->type = prop->type;
newp->flag = prop->flag;
newp->data.val = prop->data.val;
newp->data.val2 = prop->data.val2;
return newp;
}