Fix CRL distribution point memory leak, CID 1519398

This commit is contained in:
olszomal 2023-01-13 08:52:24 +01:00 committed by Michał Trojnara
parent 7f87f930f7
commit d59601f2b9

View File

@ -2768,6 +2768,7 @@ static char *get_clrdp_url(X509 *cert)
url = OPENSSL_strdup((const char *)ASN1_STRING_get0_data(uri));
if (strncmp(url, "http://", 7) == 0)
goto out;
OPENSSL_free(url);
}
}
}