openssl: get_cert_chain: fix NULL dereference
CID 1361815: Explicit null dereferenced (FORWARD_NULL)
This commit is contained in:
Родитель
8132fe11b3
Коммит
675c30abc2
|
@ -2550,9 +2550,11 @@ static CURLcode get_cert_chain(struct connectdata *conn,
|
||||||
EVP_PKEY_free(pubkey);
|
EVP_PKEY_free(pubkey);
|
||||||
}
|
}
|
||||||
|
|
||||||
for(j = 0; j < psig->length; j++)
|
if(psig) {
|
||||||
BIO_printf(mem, "%02x:", psig->data[j]);
|
for(j = 0; j < psig->length; j++)
|
||||||
push_certinfo("Signature", i);
|
BIO_printf(mem, "%02x:", psig->data[j]);
|
||||||
|
push_certinfo("Signature", i);
|
||||||
|
}
|
||||||
|
|
||||||
PEM_write_bio_X509(mem, x);
|
PEM_write_bio_X509(mem, x);
|
||||||
push_certinfo("Cert", i);
|
push_certinfo("Cert", i);
|
||||||
|
|
Загрузка…
Ссылка в новой задаче