Commit 58911b72 authored by Stefan Behnel's avatar Stefan Behnel

fix compiler warning about uninitialised variable

--HG--
extra : transplant_source : %2B%AF%ADGa7%08O%FCC%40%08%AAI%DF%FE%22F%0C0
parent 39feb676
......@@ -321,6 +321,7 @@ static CYTHON_INLINE PyObject* __Pyx_dict_iterator(PyObject* dict, int is_dict,
}
#endif
*p_is_dict = 0;
*p_orig_length = 0;
if (method_name) {
dict = PyObject_CallMethodObjArgs(dict, method_name, NULL);
if (!dict)
......
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