Browse Source

- Fix php_escape_html_entities_ex call (int * has been changed to size_t *)

pull/271/head
Jérôme Loyet 15 years ago
parent
commit
440727f4ed
  1. 3
      sapi/fpm/fpm/fpm_status.c

3
sapi/fpm/fpm/fpm_status.c

@ -376,7 +376,8 @@ int fpm_status_handle_request(TSRMLS_D) /* {{{ */
/* 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

Loading…
Cancel
Save