mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
MDEV-15091 : Windows, 64bit: reenable and fix warning C4267 (conversion from 'size_t' to 'type', possible loss of data)
Handle string length as size_t, consistently (almost always:)) Change function prototypes to accept size_t, where in the past ulong or uint were used. change local/member variables to size_t when appropriate. This fix excludes rocksdb, spider,spider, sphinx and connect for now.
This commit is contained in:
@ -135,7 +135,7 @@ my_recv_async(struct mysql_async_context *b, my_socket fd,
|
||||
|
||||
for (;;)
|
||||
{
|
||||
res= recv(fd, buf, size, IF_WIN(0, MSG_DONTWAIT));
|
||||
res= recv(fd, buf, (int)size, IF_WIN(0, MSG_DONTWAIT));
|
||||
if (res >= 0 || IS_BLOCKING_ERROR())
|
||||
return res;
|
||||
b->events_to_wait_for= MYSQL_WAIT_READ;
|
||||
@ -163,7 +163,7 @@ my_send_async(struct mysql_async_context *b, my_socket fd,
|
||||
|
||||
for (;;)
|
||||
{
|
||||
res= send(fd, buf, size, IF_WIN(0, MSG_DONTWAIT));
|
||||
res= send(fd, buf, (int)size, IF_WIN(0, MSG_DONTWAIT));
|
||||
if (res >= 0 || IS_BLOCKING_ERROR())
|
||||
return res;
|
||||
b->events_to_wait_for= MYSQL_WAIT_WRITE;
|
||||
|
Reference in New Issue
Block a user