]> granicus.if.org Git - php/commitdiff
ZTS typo
authorIlia Alshanetsky <iliaa@php.net>
Wed, 25 Jun 2003 23:14:19 +0000 (23:14 +0000)
committerIlia Alshanetsky <iliaa@php.net>
Wed, 25 Jun 2003 23:14:19 +0000 (23:14 +0000)
ext/sqlite/sqlite.c

index 1a26049dfe3d5326ee0fa904dced3d4435e8e892..a9759135b11f54fc889693f6f1b606c69dbad749 100644 (file)
@@ -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);
 }
 /* }}} */