From 35a8f0dee5252555d0749e3318bb65cb3442828d Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Fri, 4 May 2012 01:10:59 -0400 Subject: [PATCH] check correct variable for error --- Modules/posixmodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index 09c430fd708..7a02b758e94 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -3584,7 +3584,7 @@ split_py_long_to_s_and_ns(PyObject *py_long, time_t *s, long *ns) if ((*s == -1) && PyErr_Occurred()) goto exit; *ns = PyLong_AsLong(PyTuple_GET_ITEM(divmod, 1)); - if ((*s == -1) && PyErr_Occurred()) + if ((*ns == -1) && PyErr_Occurred()) goto exit; result = 1;