diff options
author | Andrey Hristov <andrey@php.net> | 2008-09-19 11:39:53 +0000 |
---|---|---|
committer | Andrey Hristov <andrey@php.net> | 2008-09-19 11:39:53 +0000 |
commit | 82310caccbc5bc34813b95a53cd1055eff0e2a76 (patch) | |
tree | dbb7ff690e37cc23c9be069cf306d2b2320dd924 /ext/mysqli/mysqli.c | |
parent | 722b9135d9b4c43fab62ff73ea9e106e1455d5da (diff) | |
download | php-git-82310caccbc5bc34813b95a53cd1055eff0e2a76.tar.gz |
Fix the libmysql build. Unintentionally broken by my last commit.
Diffstat (limited to 'ext/mysqli/mysqli.c')
-rw-r--r-- | ext/mysqli/mysqli.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mysqli/mysqli.c b/ext/mysqli/mysqli.c index d3a500b579..89bee8c58f 100644 --- a/ext/mysqli/mysqli.c +++ b/ext/mysqli/mysqli.c @@ -1255,7 +1255,7 @@ void php_mysqli_fetch_into_hash(INTERNAL_FUNCTION_PARAMETERS, int override_flags } else { ZVAL_STRINGL(res, row[i], field_len[i], 1); } - if (m + if (fetchtype & MYSQLI_NUM) { add_index_zval(return_value, i, res); } |