]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
initialization not needed
authorBenjamin Peterson <benjamin@python.org>
Fri, 4 May 2012 15:06:09 +0000 (11:06 -0400)
committerBenjamin Peterson <benjamin@python.org>
Fri, 4 May 2012 15:06:09 +0000 (11:06 -0400)
Modules/posixmodule.c

index afa8b392e8cfdaffebd683218107cffd99122583..76f440333de93011365e1b18c97c1e97dea8f49f 100644 (file)
@@ -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;