Fix uninitialised p error.
Reviewed-by: Rich Salz <rsalz@openssl.org>
(cherry picked from commit 63eb10a07e
)
This commit is contained in:
parent
d88ef40a1e
commit
943c4ca62b
1 changed files with 1 additions and 1 deletions
|
@ -135,7 +135,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;
|
||||
}
|
||||
|
||||
p = *pp;
|
||||
|
|
Loading…
Reference in a new issue