From: Ilia Alshanetsky Date: Wed, 25 Jun 2003 23:14:19 +0000 (+0000) Subject: ZTS typo X-Git-Tag: RELEASE_1_0_2~41 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0dc20e8bea5352827dfa7d13203b2aadaef10755;p=php ZTS typo --- diff --git a/ext/sqlite/sqlite.c b/ext/sqlite/sqlite.c index 1a26049dfe..a9759135b1 100644 --- a/ext/sqlite/sqlite.c +++ b/ext/sqlite/sqlite.c @@ -1793,7 +1793,7 @@ PHP_FUNCTION(sqlite_single_query) while (rres->curr_row < rres->nrows) { MAKE_STD_ZVAL(ent); - php_sqlite_fetch_string(rres, decode_binary, ent TSRMLS_DC); + php_sqlite_fetch_string(rres, decode_binary, ent TSRMLS_CC); /* if set and we only have 1 row in the result set, return the result as a string. */ if (srow) { @@ -1837,7 +1837,7 @@ PHP_FUNCTION(sqlite_fetch_string) ZEND_FETCH_RESOURCE(res, struct php_sqlite_result *, &zres, -1, "sqlite result", le_sqlite_result); } - php_sqlite_fetch_string(res, decode_binary, return_value TSRMLS_DC); + php_sqlite_fetch_string(res, decode_binary, return_value TSRMLS_CC); } /* }}} */