diff options
author | Rob Austein <sra@hactrn.net> | 2012-10-05 01:25:59 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2012-10-05 01:25:59 +0000 |
commit | 0de9fc298221de725021b63493dd54ce61d6ccdc (patch) | |
tree | f9fde67fe494e46f80c0b52e541af8838e691722 | |
parent | 607e3e6a04e66a8213b00652bd8e27d2ab865296 (diff) |
Apparently gcc reserves the right to optimize code to the point where
safe code becomes unsafe, then whines about it. Hmm.
svn path=/branches/tk274/; revision=4757
-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 7ab7b0b4..56ce5fd8 100644 --- a/rpkid/ext/POW.c +++ b/rpkid/ext/POW.c @@ -7244,7 +7244,7 @@ pkcs10_object_pem_read_helper(PyTypeObject *type, BIO *bio) static PyObject * pkcs10_object_der_read_helper(PyTypeObject *type, BIO *bio) { - pkcs10_object *self; + pkcs10_object *self = NULL; ENTERING(pkcs10_object_der_read_helper); |