mirror of
https://github.com/python/cpython.git
synced 2025-11-01 18:51:43 +00:00
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
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue