Wasnt initializing a pointer as null, messed up making new object names

This commit is contained in:
2006-12-15 09:58:16 +00:00
parent 65d5b47a10
commit 956add11b4

View File

@@ -1303,7 +1303,7 @@ static PyObject *SceneObSeq_link( BPy_SceneObSeq * self, PyObject *pyobj )
static PyObject *SceneObSeq_new( BPy_SceneObSeq * self, PyObject *args )
{
void *data = NULL;
char *name;
char *name = NULL;
short type = OB_EMPTY;
struct Object *object;
Base *base;