From: Pierre Joye Date: Mon, 26 Sep 2011 08:36:33 +0000 (+0000) Subject: - Fix bug #55622, better fix for this issue, old fix can break if sizeof(size_t)... X-Git-Tag: php-5.3.9RC1~89 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3e0e2820b8d5b75214e4e854aa51aba1d47b109e;p=php - Fix bug #55622, better fix for this issue, old fix can break if sizeof(size_t) > sizeof(int) like on sparc --- diff --git a/ext/standard/basic_functions.c b/ext/standard/basic_functions.c index b3e7a10811..aecefa3d94 100644 --- a/ext/standard/basic_functions.c +++ b/ext/standard/basic_functions.c @@ -6022,7 +6022,7 @@ PHP_FUNCTION(parse_ini_file) PHP_FUNCTION(parse_ini_string) { char *string = NULL, *str = NULL; - size_t str_len = 0; + int str_len = 0; zend_bool process_sections = 0; long scanner_mode = ZEND_INI_SCANNER_NORMAL; zend_ini_parser_cb_t ini_parser_cb; @@ -6031,6 +6031,10 @@ PHP_FUNCTION(parse_ini_string) RETURN_FALSE; } + if (INT_MAX - str_len < ZEND_MMAP_AHEAD) { + RETVAL_FALSE; + } + /* Set callback function */ if (process_sections) { BG(active_ini_file_section) = NULL;