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

compilation warning

ps_bugs.c:3275:5: note: ‘sprintf’ output between 9 and 19 bytes into a destination of size 12
This commit is contained in:
Sergei Golubchik
2023-10-22 10:03:13 +02:00
parent 5c9eab55f0
commit 50f65db279

View File

@@ -3257,7 +3257,7 @@ error:
static int test_mem_overun(MYSQL *mysql)
{
char buffer[10000], field[12];
char buffer[10000], field[20];
MYSQL_STMT *stmt;
MYSQL_RES *field_res, *res;
int rc, i, length;