]> git.ipfire.org Git - thirdparty/openssl.git/blobdiff - crypto/asn1/asn1_par.c
Fix uninitialised p error.
[thirdparty/openssl.git] / crypto / asn1 / asn1_par.c
index 8120f26deda0f0f3afc030317a302f8640dd1a9f..e16483dea57f348433e2831eef01e464942564e4 100644 (file)
@@ -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;