From: Georg Richter Date: Wed, 6 Apr 2005 06:47:12 +0000 (+0000) Subject: fix for bug #32282 (segfault in mysqli_fetch_array on 64-bit) X-Git-Tag: php-5.0.1b1~601 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f6ecb58448628ce1049db1d8aa3de5a28170160a;p=php fix for bug #32282 (segfault in mysqli_fetch_array on 64-bit) --- diff --git a/ext/mysqli/mysqli.c b/ext/mysqli/mysqli.c index 03700e8d43..2922f8b7b7 100644 --- a/ext/mysqli/mysqli.c +++ b/ext/mysqli/mysqli.c @@ -737,7 +737,7 @@ void php_mysqli_fetch_into_hash(INTERNAL_FUNCTION_PARAMETERS, int override_flags { MYSQL_RES *result; zval *mysql_result; - int fetchtype; + long fetchtype; unsigned int i; MYSQL_FIELD *fields; MYSQL_ROW row;