]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
Fix NULL deref in apps/pkcs7
authorRich Salz <rsalz@openssl.org>
Mon, 25 Apr 2016 12:56:54 +0000 (08:56 -0400)
committerRich Salz <rsalz@openssl.org>
Mon, 25 Apr 2016 15:46:52 +0000 (11:46 -0400)
Thanks to Brian Carpenter for finding and reporting this.

Reviewed-by: Emilia Käsper <emilia@openssl.org>
(cherry picked from commit 79356a83b78a2d936dcd022847465d9ebf6c67b1)

apps/pkcs7.c

index 643507f216a046d214e372e54653af6862aa7111..b67763318397607d005eaaa9c051eb51a3b3e42f 100644 (file)
@@ -235,12 +235,16 @@ int MAIN(int argc, char **argv)
         i = OBJ_obj2nid(p7->type);
         switch (i) {
         case NID_pkcs7_signed:
-            certs = p7->d.sign->cert;
-            crls = p7->d.sign->crl;
+            if (p7->d.sign != NULL) {
+                certs = p7->d.sign->cert;
+                crls = p7->d.sign->crl;
+            }
             break;
         case NID_pkcs7_signedAndEnveloped:
-            certs = p7->d.signed_and_enveloped->cert;
-            crls = p7->d.signed_and_enveloped->crl;
+            if (p7->d.signed_and_enveloped != NULL) {
+                certs = p7->d.signed_and_enveloped->cert;
+                crls = p7->d.signed_and_enveloped->crl;
+            }
             break;
         default:
             break;