Skip to content

Commit fbd85a0

Browse files
committed
initialization not needed
1 parent f340c21 commit fbd85a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Modules/posixmodule.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3576,7 +3576,7 @@ static int
35763576
split_py_long_to_s_and_ns(PyObject *py_long, time_t *s, long *ns)
35773577
{
35783578
int result = 0;
3579-
PyObject *divmod = NULL;
3579+
PyObject *divmod;
35803580
divmod = PyNumber_Divmod(py_long, billion);
35813581
if (!divmod)
35823582
goto exit;

0 commit comments

Comments
 (0)