From: Michael Wallner Date: Fri, 12 Jun 2009 09:56:24 +0000 (+0000) Subject: fix php_explode usage in PHP-5.3 X-Git-Tag: RELEASE_1_6_4~4 X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=commitdiff_plain;h=15f7e08887c51ce969376017350b76be0079513a fix php_explode usage in PHP-5.3 --- diff --git a/http_headers_api.c b/http_headers_api.c index 4c0d2f4..42e7dcd 100644 --- a/http_headers_api.c +++ b/http_headers_api.c @@ -131,7 +131,7 @@ PHP_HTTP_API HashTable *_http_negotiate_q(const char *header, HashTable *support ZVAL_STRINGL(&ex_del, ",", 1, 0); array_init(&ex_arr); - php_explode(&ex_del, accept, &ex_arr, -1); + php_explode(&ex_del, accept, &ex_arr, INT_MAX); if (zend_hash_num_elements(Z_ARRVAL(ex_arr)) > 0) { int i = 0;