diff options
author | Rob Austein <sra@hactrn.net> | 2008-05-02 16:08:15 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2008-05-02 16:08:15 +0000 |
commit | a8ddeab68cdc6b09da4b51851ff2e7be9d70fbe4 (patch) | |
tree | c213df290dfcbc1dcc4c9620951ca16eca694d03 /pow | |
parent | 28515c2b9a0c9b6f29632134676981831c3e183a (diff) |
Next time, remember to check that I'm using the right CMS_ContentInfo*
variable before reporting my own stupid null pointer oops as an
OpenSSL bug. Sigh.
svn path=/pow/POW-0.7/POW.c; revision=1736
Diffstat (limited to 'pow')
-rw-r--r-- | pow/POW-0.7/POW.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pow/POW-0.7/POW.c b/pow/POW-0.7/POW.c index 5b9a272e..873584e2 100644 --- a/pow/POW-0.7/POW.c +++ b/pow/POW-0.7/POW.c @@ -6948,7 +6948,7 @@ CMS_object_sign(cms_object *self, PyObject *args) KVETCH("CMS_object_sign(): About to call CMS_add0_crl()"); - if (!CMS_add0_crl(self->cms, crlobj->crl)) + if (!CMS_add0_crl(cms, crlobj->crl)) lose_openssl_error("could not add CRL to CMS"); KVETCH("CMS_object_sign(): Survived call to CMS_add0_crl()"); |