From: Felipe Pena Date: Sun, 22 May 2011 19:06:21 +0000 (+0000) Subject: - Fixed bug #54269 (Short exception message buffer causes crash) X-Git-Tag: php-5.3.7RC1~89 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=508f926604d4efa0d3547625ce8b585eb9a1a0de;p=php - Fixed bug #54269 (Short exception message buffer causes crash) --- diff --git a/NEWS b/NEWS index f6fe856614..62bb94be83 100644 --- a/NEWS +++ b/NEWS @@ -61,6 +61,9 @@ PHP NEWS 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) diff --git a/ext/interbase/php_ibase_includes.h b/ext/interbase/php_ibase_includes.h index ec37d211e2..a5cd9d794e 100755 --- a/ext/interbase/php_ibase_includes.h +++ b/ext/interbase/php_ibase_includes.h @@ -51,7 +51,7 @@ extern int le_link, le_plink, le_trans; #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"