Fix ODBC, the GC patch missed this one leading to compilation failure.

This commit is contained in:
Andrey Hristov 2007-10-10 14:29:27 +00:00
parent 3db75dcb84
commit b0677f4beb

View file

@ -1573,8 +1573,7 @@ PHP_FUNCTION(odbc_fetch_into)
result->fetched++;
for(i = 0; i < result->numcols; i++) {
ALLOC_ZVAL(tmp);
tmp->refcount = 1;
MAKE_STD_ZVAL(tmp);
Z_TYPE_P(tmp) = IS_STRING;
Z_STRLEN_P(tmp) = 0;
sql_c_type = SQL_C_CHAR;