From: Dmitry Stogov Date: Tue, 13 Sep 2011 07:07:06 +0000 (+0000) Subject: Fixed Bug #55649 (Undefined function Bug()). (Laruence) X-Git-Tag: php-5.3.9RC1~131 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=12c3dc1b002ec29d51dd716112ba58c84e4d566e;p=php Fixed Bug #55649 (Undefined function Bug()). (Laruence) --- diff --git a/NEWS b/NEWS index 57b4f970d1..5a53885a73 100644 --- a/NEWS +++ b/NEWS @@ -3,6 +3,7 @@ PHP NEWS ?? ??? 2011, PHP 5.3.9 - Core: + . Fixed Bug #55649 (Undefined function Bug()). (Laruence) . Fixed bug #52461 (Incomplete doctype and missing xmlns). (virsacer at web dot de, Pierre) . Fixed bug #55366: keys lost when using substr_replace an array. (Arpad) diff --git a/Zend/zend_strtod.c b/Zend/zend_strtod.c index cd7cedd708..3d133bfecd 100644 --- a/Zend/zend_strtod.c +++ b/Zend/zend_strtod.c @@ -445,6 +445,12 @@ static MUTEX_T pow5mult_mutex; #endif /* ZTS */ +#ifdef DEBUG +static void Bug(const char *message) { + fprintf(stderr, "%s\n", message); +} +#endif + ZEND_API int zend_startup_strtod(void) /* {{{ */ { #ifdef ZTS