Missing variable initialization from earlier Object.New() patch.

This commit is contained in:
Ken Hughes
2006-12-17 06:58:02 +00:00
parent 940e625702
commit 65eda9e6e1

View File

@@ -3089,6 +3089,7 @@ PyObject *Object_CreatePyObject( struct Object * obj )
return ( NULL );
}
blen_object->object = obj;
blen_object->realtype = OB_EMPTY;
obj->id.us++;
return ( ( PyObject * ) blen_object );
}