mbedtls: remove failf() call with first argument as NULL

failf() needs an easy handle to work. This change removes the call since
there is normnally nowhere to show the output if init fails.

Bonus: improve language in an infof() call

Spotted by Copilot

Closes #21441
This commit is contained in:
Daniel Stenberg 2026-04-24 17:23:05 +02:00
parent 41f3f94d91
commit 7d295145eb
No known key found for this signature in database
GPG key ID: 5CC908FDB71E12C2

View file

@ -425,7 +425,7 @@ static void mbed_extract_certinfo(struct Curl_easy *data,
cert_count++;
if(cert_count > MAX_ALLOWED_CERT_AMOUNT) {
infof(data, "Certificates is more than allowed (%d), skipping certinfo",
infof(data, "More certificates than allowed (%d), skipping certinfo",
MAX_ALLOWED_CERT_AMOUNT);
return;
}
@ -1513,11 +1513,9 @@ static int mbedtls_init(void)
ret = mbedtls_ctr_drbg_seed(&rng.drbg, mbedtls_entropy_func, &rng.entropy,
NULL, 0);
if(ret) {
failf(NULL, "failed: mbedtls_ctr_drbg_seed returned -0x%x",
(unsigned int)-ret);
if(ret)
/* mbedtls_ctr_drbg_seed returned error */
return 0;
}
/* To prevent an adversary from reading your random data,
you can enable prediction resistance.