1
0
mirror of https://github.com/mariadb-corporation/mariadb-connector-c.git synced 2025-08-08 14:02:17 +03:00

don't use the output printf buffer as a %s parameter

followup for ebcb9eca29
This commit is contained in:
Sergei Golubchik
2024-02-03 16:42:01 +01:00
parent 9aa15e72a7
commit 830d137387

View File

@@ -1808,10 +1808,14 @@ restart:
else if (IS_MYSQL_ERROR(code) || IS_MARIADB_ERROR(code))
; /* not forged - generated on the client side */
else if (mysql->options.use_ssl)
{
char last_error[sizeof(mysql->net.last_error)];
strcpy(last_error, mysql->net.last_error);
my_set_error(mysql, CR_CONNECTION_ERROR, SQLSTATE_UNKNOWN,
"Received error packet before completion of TLS handshake. "
"The authenticity of the following error cannot be verified:\n%d - %s",
code, mysql->net.last_error);
"The authenticity of the following error cannot be verified: %d - %s",
code, last_error);
}
goto error;
}