mbedtls: cut off trailing newlines from debug logs

To avoid double newlines in the output.

Reported-by: Gisle Vanem
Fixes #13321
Closes #13356
This commit is contained in:
Daniel Stenberg 2024-04-12 10:57:02 +02:00
parent 16bad89239
commit 68ce971c1d
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2

View File

@ -163,15 +163,18 @@ static int entropy_func_mutex(void *data, unsigned char *output, size_t len)
static void mbed_debug(void *context, int level, const char *f_name,
int line_nb, const char *line)
{
struct Curl_easy *data = NULL;
if(!context)
return;
data = (struct Curl_easy *)context;
infof(data, "%s", line);
struct Curl_easy *data = (struct Curl_easy *)context;
(void) level;
(void) line_nb;
(void) f_name;
if(data) {
size_t len = strlen(line);
if(len && (line[len - 1] == '\n'))
/* discount any trailing newline */
len--;
infof(data, "%.*s", (int)len, line);
}
}
#endif