X-Git-Url: https://git.distorted.org.uk/~mdw/pyke/blobdiff_plain/1c0e9c88b06e3422c7afa0cf4bd3fbe166b401da..83a72c0dad2f0da52131224e9b072ef3490db56f:/pyke-mLib.c?ds=sidebyside diff --git a/pyke-mLib.c b/pyke-mLib.c index a29f34c..fd6f895 100644 --- a/pyke-mLib.c +++ b/pyke-mLib.c @@ -53,7 +53,8 @@ PyObject *getk64(kludge64 u) if ((j = PyLong_FromUnsignedLong(LO64(u))) == 0) goto end; if ((t = PyNumber_InPlaceOr(i, j)) == 0) goto end; Py_DECREF(i); i = t; - if ((rc = PyNumber_Int(i)) == 0) goto end; + if ((t = PyNumber_Int(i)) == 0) goto end; + rc = t; end: Py_XDECREF(i); Py_XDECREF(j);