Skip to content

Commit

Permalink
ZTS typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Ilia Alshanetsky committed Jun 25, 2003
1 parent 936c9d5 commit 0dc20e8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ext/sqlite/sqlite.c
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down Expand Up @@ -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);
}
/* }}} */

Expand Down

0 comments on commit 0dc20e8

Please sign in to comment.