Commit a465ca78 authored by Viktor Dukhovni's avatar Viktor Dukhovni
Browse files

Fix option value parsing in crl2pkcs7 -certfile



Reviewed-by: default avatarRich Saltz <rsalz@openssl.org>
parent 7eff6aa0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -138,7 +138,7 @@ int crl2pkcs7_main(int argc, char **argv)
            if ((certflst == NULL)
                && (certflst = sk_OPENSSL_STRING_new_null()) == NULL)
                goto end;
            if (!sk_OPENSSL_STRING_push(certflst, *(++argv))) {
            if (!sk_OPENSSL_STRING_push(certflst, opt_arg())) {
                sk_OPENSSL_STRING_free(certflst);
                goto end;
            }