Commit 5e4d76f1 authored by Stefan Behnel's avatar Stefan Behnel

fix C compiler warning about uninitialised variable

parent 82b01ba9
......@@ -1277,7 +1277,7 @@ static PyObject* __Pyx__PyObject_CallMethod1(PyObject* method, PyObject* arg); /
//@requires: PyCFunctionFastCall
static PyObject* __Pyx__PyObject_CallMethod1(PyObject* method, PyObject* arg) {
PyObject *result;
PyObject *result = NULL;
#if CYTHON_UNPACK_METHODS
if (likely(PyMethod_Check(method))) {
PyObject *self = PyMethod_GET_SELF(method);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment