commit | e58415f702b7884b3597ea7b1e20459322ef1be5 | [log] [tgz] |
---|---|---|
author | Jean-Paul Calderone <exarkun@divmod.com> | Fri Jul 24 21:12:45 2009 -0400 |
committer | Jean-Paul Calderone <exarkun@divmod.com> | Fri Jul 24 21:12:45 2009 -0400 |
tree | 73e102c9df1ec49be3a964ac8f814e7cc37ad779 | |
parent | e7901d75038efbf47fab70953f9bbed162e7269b [diff] |
initialize a local to suppress a warning
diff --git a/src/crypto/pkcs12.c b/src/crypto/pkcs12.c index b8318d2..27a49fe 100644 --- a/src/crypto/pkcs12.c +++ b/src/crypto/pkcs12.c
@@ -329,7 +329,7 @@ crypto_PKCS12Obj * crypto_PKCS12_New(PKCS12 *p12, char *passphrase) { - crypto_PKCS12Obj *self; + crypto_PKCS12Obj *self = NULL; PyObject *cacertobj = NULL; X509 *cert = NULL;