mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
fix of windows compiler warnings
This commit is contained in:
@ -241,7 +241,7 @@ void mysql_client_binlog_statement(THD* thd)
|
|||||||
goto end;
|
goto end;
|
||||||
}
|
}
|
||||||
|
|
||||||
decoded_len= my_base64_needed_decoded_length(coded_len);
|
decoded_len= my_base64_needed_decoded_length((int)coded_len);
|
||||||
if (!(buf= (char *) my_malloc(decoded_len, MYF(MY_WME))))
|
if (!(buf= (char *) my_malloc(decoded_len, MYF(MY_WME))))
|
||||||
{
|
{
|
||||||
my_error(ER_OUTOFMEMORY, MYF(ME_FATALERROR), 1);
|
my_error(ER_OUTOFMEMORY, MYF(ME_FATALERROR), 1);
|
||||||
|
Reference in New Issue
Block a user