diff options
author | Rob Austein <sra@hactrn.net> | 2013-08-28 00:21:34 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2013-08-28 00:21:34 +0000 |
commit | 2e5321340791a021c0dc1853d1452bac0483621c (patch) | |
tree | d4a183d3684f431ead8b3e599dc12b19e68c22a9 | |
parent | 4bedd1c6226b5391eb4d7f400ca8adf60156f830 (diff) |
Cleanup.
svn path=/trunk/; revision=5472
-rw-r--r-- | rpkid/ext/POW.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rpkid/ext/POW.c b/rpkid/ext/POW.c index fdc849f7..bee04afa 100644 --- a/rpkid/ext/POW.c +++ b/rpkid/ext/POW.c @@ -3828,7 +3828,7 @@ x509_store_ctx_object_verify_cb(int ok, X509_STORE_CTX *ctx) if ((result = PyObject_CallMethod(self, method_name, "i", ok)) == NULL) return -1; - ok = result == NULL ? -1 : PyObject_IsTrue(result); + ok = PyObject_IsTrue(result); Py_XDECREF(result); return ok; } |