fat Sat, 02 Jul 2011 16:40:59 +0000
Revision: http://svn.php.net/viewvc?view=revision&revision=312814
Log:
- Fix php_escape_html_entities_ex call (int * has been changed to size_t *)
Changed paths:
U php/php-src/branches/PHP_5_4/sapi/fpm/fpm/fpm_status.c
U php/php-src/trunk/sapi/fpm/fpm/fpm_status.c
Modified: php/php-src/branches/PHP_5_4/sapi/fpm/fpm/fpm_status.c
===================================================================
--- php/php-src/branches/PHP_5_4/sapi/fpm/fpm/fpm_status.c 2011-07-02
16:34:39 UTC (rev 312813)
+++ php/php-src/branches/PHP_5_4/sapi/fpm/fpm/fpm_status.c 2011-07-02
16:40:59 UTC (rev 312814)
@@ -376,7 +376,8 @@
/* no need to test the var 'full' */
if (full_syntax) {
- int i, len, first;
+ int i, first;
+ size_t len;
char *query_string;
struct timeval duration, now;
#ifdef HAVE_FPM_LQ
Modified: php/php-src/trunk/sapi/fpm/fpm/fpm_status.c
===================================================================
--- php/php-src/trunk/sapi/fpm/fpm/fpm_status.c 2011-07-02 16:34:39 UTC (rev
312813)
+++ php/php-src/trunk/sapi/fpm/fpm/fpm_status.c 2011-07-02 16:40:59 UTC (rev
312814)
@@ -376,7 +376,8 @@
/* no need to test the var 'full' */
if (full_syntax) {
- int i, len, first;
+ int i, first;
+ size_t len;
char *query_string;
struct timeval duration, now;
#ifdef HAVE_FPM_LQ
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php