From 0dc20e8bea5352827dfa7d13203b2aadaef10755 Mon Sep 17 00:00:00 2001 From: Ilia Alshanetsky Date: Wed, 25 Jun 2003 23:14:19 +0000 Subject: [PATCH] ZTS typo --- ext/sqlite/sqlite.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); } /* }}} */ -- 2.40.0