This commit is contained in:
Michael Davidsaver
2013-04-14 09:15:54 -04:00
parent 939ae5a11e
commit 84a67c8e92

View File

@ -86,7 +86,7 @@ static PyObject* pyRecord_rtype(pyRecord *self)
static PyObject* pyRecord_info(pyRecord *self, PyObject *args)
{
const char *name;
PyObject *def = Py_None;
PyObject *def = NULL;
DBENTRY entry;
if(!PyArg_ParseTuple(args, "s|O", &name, &def))