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:
Fred Drake 2000-10-11 21:53:34 +00:00
parent 4747a18ef9
commit 06fdd2d9e8
1 changed files with 1 additions and 1 deletions

View File

@ -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;