Commit 2c02faee authored by Dr. Stephen Henson's avatar Dr. Stephen Henson
Browse files

Fix uninitialised p error.



Reviewed-by: default avatarRich Salz <rsalz@openssl.org>
(cherry picked from commit 63eb10a0)
parent a8731c0c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -141,7 +141,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;