mirror of
https://github.com/curl/curl.git
synced 2024-11-21 01:16:58 +08:00
nss: Don't ignore Curl_extract_certinfo() OOM failure
This commit is contained in:
parent
0943045108
commit
2728caa613
@ -774,12 +774,17 @@ static CURLcode display_conn_info(struct connectdata *conn, PRFileDesc *sock)
|
||||
result = Curl_ssl_init_certinfo(conn->data, i);
|
||||
if(!result) {
|
||||
for(i = 0; cert; cert = cert2) {
|
||||
Curl_extract_certinfo(conn, i++, (char *)cert->derCert.data,
|
||||
(char *)cert->derCert.data + cert->derCert.len);
|
||||
result = Curl_extract_certinfo(conn, i++, (char *)cert->derCert.data,
|
||||
(char *)cert->derCert.data +
|
||||
cert->derCert.len);
|
||||
if(result)
|
||||
break;
|
||||
|
||||
if(cert->isRoot) {
|
||||
CERT_DestroyCertificate(cert);
|
||||
break;
|
||||
}
|
||||
|
||||
cert2 = CERT_FindCertIssuer(cert, now, certUsageSSLCA);
|
||||
CERT_DestroyCertificate(cert);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user