|
From: <di...@us...> - 2014-12-22 08:52:03
|
Revision: 60408
http://sourceforge.net/p/firebird/code/60408
Author: dimitr
Date: 2014-12-22 08:51:56 +0000 (Mon, 22 Dec 2014)
Log Message:
-----------
Patches by Alexey Pavlov.
Modified Paths:
--------------
firebird/trunk/src/remote/inet.cpp
firebird/trunk/src/remote/server/os/win32/srvr_w32.cpp
Modified: firebird/trunk/src/remote/inet.cpp
===================================================================
--- firebird/trunk/src/remote/inet.cpp 2014-12-22 00:15:05 UTC (rev 60407)
+++ firebird/trunk/src/remote/inet.cpp 2014-12-22 08:51:56 UTC (rev 60408)
@@ -1787,7 +1787,7 @@
THREAD_ENTRY_DECLARE forkThread(THREAD_ENTRY_PARAM arg)
{
- const USHORT flag = (USHORT) arg;
+ const USHORT flag = (USHORT)(U_IPTR) arg;
while (!INET_shutting_down)
{
Modified: firebird/trunk/src/remote/server/os/win32/srvr_w32.cpp
===================================================================
--- firebird/trunk/src/remote/server/os/win32/srvr_w32.cpp 2014-12-22 00:15:05 UTC (rev 60407)
+++ firebird/trunk/src/remote/server/os/win32/srvr_w32.cpp 2014-12-22 08:51:56 UTC (rev 60408)
@@ -295,7 +295,7 @@
else if (server_flag & SRVR_wnet)
port = WNET_reconnect(connection_handle);
else if (server_flag & SRVR_xnet)
- port = XNET_reconnect((ULONG) connection_handle);
+ port = XNET_reconnect((ULONG_PTR) connection_handle);
if (port)
service_connection(port);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|