diff options
author | Rob Austein <sra@hactrn.net> | 2010-07-04 22:41:11 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2010-07-04 22:41:11 +0000 |
commit | 59e93efef312368801f68c55ac2d9e414d025439 (patch) | |
tree | 437816f6f689b2e59de2e4a77cbc87284af58b0c | |
parent | 3d4a398c741c76a27b473dc87801d5d6a54551bc (diff) |
Cleanup
svn path=/pow/POW-0.7/POW.c; revision=3337
-rw-r--r-- | pow/POW-0.7/POW.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/pow/POW-0.7/POW.c b/pow/POW-0.7/POW.c index e78cbbb9..3e244bb1 100644 --- a/pow/POW-0.7/POW.c +++ b/pow/POW-0.7/POW.c @@ -758,7 +758,6 @@ static PyObject * stack_to_tuple_helper(_STACK *sk, PyObject *(*handler)(void *)) { PyObject *result_list = NULL, *result_tuple = NULL, *obj = NULL; - int n, i; if ((result_list = PyList_New(0)) == NULL) lose("could not allocate memory"); @@ -2793,9 +2792,9 @@ x509_crl_object_set_revoked(x509_crl_object *self, PyObject *args) static PyObject * x509_crl_object_helper_get_revoked(STACK_OF(X509_REVOKED) *revoked) { - int no_entries = 0, inlist = 0, i = 0; + int no_entries = 0, i = 0; x509_revoked_object *revoke_obj = NULL; - PyObject *item = NULL, *result_list = NULL, *result_tuple = NULL; + PyObject *result_list = NULL, *result_tuple = NULL; no_entries = sk_X509_REVOKED_num(revoked); @@ -4598,7 +4597,7 @@ static char ssl_object_get_ciphers__doc__[] = static PyObject * ssl_object_get_ciphers(ssl_object *self, PyObject *args) { - int inlist = 0, i = 0; + int i = 0; const char *cipher = NULL; PyObject *list = NULL, *name = NULL; |