From: <fir...@us...> - 2013-04-29 01:04:15
|
Revision: 58008 http://sourceforge.net/p/firebird/code/58008 Author: firebirds Date: 2013-04-29 01:03:55 +0000 (Mon, 29 Apr 2013) Log Message: ----------- nightly update Modified Paths: -------------- firebird/branches/B2_5_Release/ChangeLog firebird/branches/B2_5_Release/src/jrd/build_no.h firebird/branches/B2_5_Release/src/misc/writeBuildNum.sh Modified: firebird/branches/B2_5_Release/ChangeLog =================================================================== --- firebird/branches/B2_5_Release/ChangeLog 2013-04-29 00:42:49 UTC (rev 58007) +++ firebird/branches/B2_5_Release/ChangeLog 2013-04-29 01:03:55 UTC (rev 58008) @@ -1,3 +1,11 @@ + 2013-04-28 14:10 dimitr + M src/common/cvt.cpp +Corrected the target buffer length. + + 2013-04-28 13:33 dimitr + M src/common/cvt.cpp +Simple fix for CORE-4093: Server crashes while converting an overscaled numeric to a string. It assumes the resulting string being limited in length by the scale (value <= 128). A more generic solution (e.g. disallow overflowing scales) would be appreciated for the trunk. + 2013-04-17 08:04 alexpeshkoff M src/jrd/jrd.cpp M src/jrd/jrd.h Modified: firebird/branches/B2_5_Release/src/jrd/build_no.h =================================================================== --- firebird/branches/B2_5_Release/src/jrd/build_no.h 2013-04-29 00:42:49 UTC (rev 58007) +++ firebird/branches/B2_5_Release/src/jrd/build_no.h 2013-04-29 01:03:55 UTC (rev 58008) @@ -3,16 +3,16 @@ *** DO NOT EDIT *** TO CHANGE ANY INFORMATION IN HERE PLEASE EDIT src/misc/writeBuildNum.sh - FORMAL BUILD NUMBER:26638 + FORMAL BUILD NUMBER:26640 */ -#define PRODUCT_VER_STRING "2.5.3.26638" -#define FILE_VER_STRING "WI-V2.5.3.26638" -#define LICENSE_VER_STRING "WI-V2.5.3.26638" -#define FILE_VER_NUMBER 2, 5, 3, 26638 +#define PRODUCT_VER_STRING "2.5.3.26640" +#define FILE_VER_STRING "WI-V2.5.3.26640" +#define LICENSE_VER_STRING "WI-V2.5.3.26640" +#define FILE_VER_NUMBER 2, 5, 3, 26640 #define FB_MAJOR_VER "2" #define FB_MINOR_VER "5" #define FB_REV_NO "3" -#define FB_BUILD_NO "26638" +#define FB_BUILD_NO "26640" #define FB_BUILD_TYPE "V" #define FB_BUILD_SUFFIX "Firebird 2.5" Modified: firebird/branches/B2_5_Release/src/misc/writeBuildNum.sh =================================================================== --- firebird/branches/B2_5_Release/src/misc/writeBuildNum.sh 2013-04-29 00:42:49 UTC (rev 58007) +++ firebird/branches/B2_5_Release/src/misc/writeBuildNum.sh 2013-04-29 01:03:55 UTC (rev 58008) @@ -9,7 +9,7 @@ MajorVer=2 MinorVer=5 RevNo=3 -BuildNum=26638 +BuildNum=26640 if [ "$SPECIAL_BUILD_SUFFIX" = "" ]; then # Normal builds This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |