mirror of
https://github.com/openssl/openssl.git
synced 2024-12-18 22:43:41 +08:00
Fix uninitialised p error.
Reviewed-by: Rich Salz <rsalz@openssl.org>
This commit is contained in:
parent
158e5207a7
commit
63eb10a07e
@ -129,7 +129,7 @@ static int asn1_parse2(BIO *bp, const unsigned char **pp, long length,
|
||||
|
||||
if (depth > ASN1_PARSE_MAXDEPTH) {
|
||||
BIO_puts(bp, "BAD RECURSION DEPTH\n");
|
||||
goto end;
|
||||
return 0;
|
||||
}
|
||||
|
||||
dump_indent = 6; /* Because we know BIO_dump_indent() */
|
||||
|
Loading…
Reference in New Issue
Block a user