diff options
author | Sebastian Bergmann <sebastian@php.net> | 2003-07-14 05:52:57 +0000 |
---|---|---|
committer | Sebastian Bergmann <sebastian@php.net> | 2003-07-14 05:52:57 +0000 |
commit | 83bf4599b773815e5bea651bce5db7d0b56c94f1 (patch) | |
tree | 24a68c5094cbffe95ff2c06cee3e4feb0be82de1 /ext/sqlite/sqlite.c | |
parent | 9933944e01eca44b11e130c80587ae753e72e468 (diff) | |
download | php-git-83bf4599b773815e5bea651bce5db7d0b56c94f1.tar.gz |
ZTS fix.
Diffstat (limited to 'ext/sqlite/sqlite.c')
-rw-r--r-- | ext/sqlite/sqlite.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/sqlite/sqlite.c b/ext/sqlite/sqlite.c index 9b654a7214..cdac6ba1ac 100644 --- a/ext/sqlite/sqlite.c +++ b/ext/sqlite/sqlite.c @@ -1081,7 +1081,7 @@ PHP_FUNCTION(sqlite_popen) int type; /* sanity check to ensure that the resource is still a valid regular resource * number */ - if (_zend_list_find(db->rsrc_id, &type) == db) { + if (_zend_list_find(db->rsrc_id, &type TSRMLS_CC) == db) { /* already accessed this request; map it */ zend_list_addref(db->rsrc_id); ZVAL_RESOURCE(return_value, db->rsrc_id); |