From: <fir...@us...> - 2015-10-17 00:09:30
|
Revision: 62378 http://sourceforge.net/p/firebird/code/62378 Author: firebirds Date: 2015-10-17 00:09:28 +0000 (Sat, 17 Oct 2015) Log Message: ----------- nightly update Modified Paths: -------------- firebird/trunk/ChangeLog firebird/trunk/src/jrd/build_no.h firebird/trunk/src/misc/writeBuildNum.sh Modified: firebird/trunk/ChangeLog =================================================================== --- firebird/trunk/ChangeLog 2015-10-16 15:30:19 UTC (rev 62377) +++ firebird/trunk/ChangeLog 2015-10-17 00:09:28 UTC (rev 62378) @@ -1,3 +1,18 @@ + 2015-10-16 15:30 hvlad + M src/remote/client/interface.cpp + M src/remote/remote.h + M src/remote/server/server.cpp + M src/yvalve/YObjects.h + M src/yvalve/why.cpp +Fixed few issues in event's handling code which could lead to AV (CORE-4680). +Fixed few small memory leaks. + + 2015-10-16 15:28 hvlad + M src/remote/inet.cpp +Implemented delayed closing of server sockets - it should fix server hang up (see CORE-4680). +Fixed socket disconnect handling to allow graceful shutdown of network connection and avoid a lot of network errors in firebird.log (mostly 10053\10054). +Misc changes. + 2015-10-15 13:22 paulbeach M builds/posix/postfix.darwin More changes to support the new pkgbuild installer for El Capitan Modified: firebird/trunk/src/jrd/build_no.h =================================================================== --- firebird/trunk/src/jrd/build_no.h 2015-10-16 15:30:19 UTC (rev 62377) +++ firebird/trunk/src/jrd/build_no.h 2015-10-17 00:09:28 UTC (rev 62378) @@ -3,16 +3,16 @@ *** DO NOT EDIT *** TO CHANGE ANY INFORMATION IN HERE PLEASE EDIT src/misc/writeBuildNum.sh - FORMAL BUILD NUMBER:32094 + FORMAL BUILD NUMBER:32096 */ -#define PRODUCT_VER_STRING "3.0.0.32094" -#define FILE_VER_STRING "WI-V3.0.0.32094" -#define LICENSE_VER_STRING "WI-V3.0.0.32094" -#define FILE_VER_NUMBER 3, 0, 0, 32094 +#define PRODUCT_VER_STRING "3.0.0.32096" +#define FILE_VER_STRING "WI-V3.0.0.32096" +#define LICENSE_VER_STRING "WI-V3.0.0.32096" +#define FILE_VER_NUMBER 3, 0, 0, 32096 #define FB_MAJOR_VER "3" #define FB_MINOR_VER "0" #define FB_REV_NO "0" -#define FB_BUILD_NO "32094" +#define FB_BUILD_NO "32096" #define FB_BUILD_TYPE "V" #define FB_BUILD_SUFFIX "Firebird 3.0 Release Candidate 1" Modified: firebird/trunk/src/misc/writeBuildNum.sh =================================================================== --- firebird/trunk/src/misc/writeBuildNum.sh 2015-10-16 15:30:19 UTC (rev 62377) +++ firebird/trunk/src/misc/writeBuildNum.sh 2015-10-17 00:09:28 UTC (rev 62378) @@ -9,7 +9,7 @@ MajorVer=3 MinorVer=0 RevNo=0 -BuildNum=32094 +BuildNum=32096 NowAt=`pwd` cd `dirname $0` This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |