felipe Sun, 22 May 2011 19:06:21 +0000 Revision: http://svn.php.net/viewvc?view=revision&revision=311341
Log: - Fixed bug #54269 (Short exception message buffer causes crash) Bug: http://bugs.php.net/54269 (Closed) Short exception message buffer causes crash Changed paths: U php/php-src/branches/PHP_5_3/NEWS U php/php-src/branches/PHP_5_3/ext/interbase/php_ibase_includes.h U php/php-src/branches/PHP_5_4/ext/interbase/php_ibase_includes.h U php/php-src/trunk/ext/interbase/php_ibase_includes.h Modified: php/php-src/branches/PHP_5_3/NEWS =================================================================== --- php/php-src/branches/PHP_5_3/NEWS 2011-05-22 17:19:40 UTC (rev 311340) +++ php/php-src/branches/PHP_5_3/NEWS 2011-05-22 19:06:21 UTC (rev 311341) @@ -61,6 +61,9 @@ functions that allows disabling addition of empty elements. (Ilia) . Fixed bug #53037 (FILTER_FLAG_EMPTY_STRING_NULL is not implemented). (Ilia) +- Interbase extension: + . Fixed bug #54269 (Short exception message buffer causes crash). (Felipe) + - intl extension: . Implemented FR #54540 (Allow loading of arbitrary resource bundles when fallback is disabled). (David Zuelke, Stas) Modified: php/php-src/branches/PHP_5_3/ext/interbase/php_ibase_includes.h =================================================================== --- php/php-src/branches/PHP_5_3/ext/interbase/php_ibase_includes.h 2011-05-22 17:19:40 UTC (rev 311340) +++ php/php-src/branches/PHP_5_3/ext/interbase/php_ibase_includes.h 2011-05-22 19:06:21 UTC (rev 311341) @@ -51,7 +51,7 @@ #define LE_PLINK "Firebird/InterBase persistent link" #define LE_TRANS "Firebird/InterBase transaction" -#define IBASE_MSGSIZE 256 +#define IBASE_MSGSIZE 512 #define MAX_ERRMSG (IBASE_MSGSIZE*2) #define IB_DEF_DATE_FMT "%Y-%m-%d" Modified: php/php-src/branches/PHP_5_4/ext/interbase/php_ibase_includes.h =================================================================== --- php/php-src/branches/PHP_5_4/ext/interbase/php_ibase_includes.h 2011-05-22 17:19:40 UTC (rev 311340) +++ php/php-src/branches/PHP_5_4/ext/interbase/php_ibase_includes.h 2011-05-22 19:06:21 UTC (rev 311341) @@ -51,7 +51,7 @@ #define LE_PLINK "Firebird/InterBase persistent link" #define LE_TRANS "Firebird/InterBase transaction" -#define IBASE_MSGSIZE 256 +#define IBASE_MSGSIZE 512 #define MAX_ERRMSG (IBASE_MSGSIZE*2) #define IB_DEF_DATE_FMT "%Y-%m-%d" Modified: php/php-src/trunk/ext/interbase/php_ibase_includes.h =================================================================== --- php/php-src/trunk/ext/interbase/php_ibase_includes.h 2011-05-22 17:19:40 UTC (rev 311340) +++ php/php-src/trunk/ext/interbase/php_ibase_includes.h 2011-05-22 19:06:21 UTC (rev 311341) @@ -51,7 +51,7 @@ #define LE_PLINK "Firebird/InterBase persistent link" #define LE_TRANS "Firebird/InterBase transaction" -#define IBASE_MSGSIZE 256 +#define IBASE_MSGSIZE 512 #define MAX_ERRMSG (IBASE_MSGSIZE*2) #define IB_DEF_DATE_FMT "%Y-%m-%d"
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
