diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index afa8b392e8cf..76f440333de9 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -3576,7 +3576,7 @@ static int split_py_long_to_s_and_ns(PyObject *py_long, time_t *s, long *ns) { int result = 0; - PyObject *divmod = NULL; + PyObject *divmod; divmod = PyNumber_Divmod(py_long, billion); if (!divmod) goto exit;