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

Fix for CONC-252:

All functions which are supported by libmysql use now unsigned long as length parameter instead of size_t
This commit is contained in:
Georg Richter
2017-07-01 15:39:08 +02:00
parent f50c465677
commit 8b3e6b5dcf
4 changed files with 17 additions and 17 deletions

View File

@@ -3586,7 +3586,7 @@ ulong STDCALL mysql_get_client_version(void)
return MARIADB_VERSION_ID;
}
ulong STDCALL mysql_hex_string(char *to, const char *from, size_t len)
ulong STDCALL mysql_hex_string(char *to, const char *from, unsigned long len)
{
char *start= to;
char hexdigits[]= "0123456789ABCDEF";