check correct variable for error

This commit is contained in:
Benjamin Peterson 2012-05-04 01:10:59 -04:00
parent d0dba6eee8
commit 35a8f0dee5
1 changed files with 1 additions and 1 deletions

View File

@ -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;