You've already forked mariadb-connector-c
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:
@@ -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";
|
||||
|
Reference in New Issue
Block a user