mirror of https://github.com/python/cpython.git
Another gcc -Wall warning squashed:
MPZ_divm(): Initialize mpzden to NULL, since it could be Py_XDECREF()ed without being initialized.
This commit is contained in:
parent
4747a18ef9
commit
06fdd2d9e8
|
@ -1209,7 +1209,7 @@ static PyObject *
|
|||
MPZ_divm(PyObject *self, PyObject *args)
|
||||
{
|
||||
PyObject *num, *den, *mod;
|
||||
mpzobject *mpznum, *mpzden, *mpzmod = NULL;
|
||||
mpzobject *mpznum, *mpzden = NULL, *mpzmod = NULL;
|
||||
mpzobject *z = NULL;
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue