diff options
author | Georg Brandl <georg@python.org> | 2009-05-05 07:52:05 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-05-05 07:52:05 (GMT) |
commit | 596820539f8e776cfb790573298c62fae319c67f (patch) | |
tree | 1f8eee8fb01bf10bd1febce0001ae0ae20bfcce5 /Modules | |
parent | 011e8420339245f9b55d41082ec6036f2f83a182 (diff) | |
download | cpython-596820539f8e776cfb790573298c62fae319c67f.zip cpython-596820539f8e776cfb790573298c62fae319c67f.tar.gz cpython-596820539f8e776cfb790573298c62fae319c67f.tar.bz2 |
Merged revisions 72314 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r72314 | georg.brandl | 2009-05-05 09:48:12 +0200 (Di, 05 Mai 2009) | 1 line
#5932: fix error return in _convertPyInt_AsSsize_t() conversion function.
........
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/_json.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Modules/_json.c b/Modules/_json.c index 45f4b58..c44dbac 100644 --- a/Modules/_json.c +++ b/Modules/_json.c @@ -133,9 +133,9 @@ _convertPyInt_AsSsize_t(PyObject *o, Py_ssize_t *size_ptr) { /* PyObject to Py_ssize_t converter */ *size_ptr = PyLong_AsSsize_t(o); - if (*size_ptr == -1 && PyErr_Occurred()); - return 1; - return 0; + if (*size_ptr == -1 && PyErr_Occurred()) + return 0; + return 1; } static PyObject * |