diff options
author | Marcus Boerger <helly@php.net> | 2003-09-05 20:05:08 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2003-09-05 20:05:08 +0000 |
commit | f05525a0ef4dfea3fc9be785670b13548b078d06 (patch) | |
tree | f531a976a75626d5cb96e0a5baf4352fed84d02c /ext/sqlite/sqlite.c | |
parent | 14ffad71d65c8d6e6566206ed7c531f79d5c0cd4 (diff) | |
download | php-git-f05525a0ef4dfea3fc9be785670b13548b078d06.tar.gz |
WS
Diffstat (limited to 'ext/sqlite/sqlite.c')
-rw-r--r-- | ext/sqlite/sqlite.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/ext/sqlite/sqlite.c b/ext/sqlite/sqlite.c index c5233a2941..a9ceda7acf 100644 --- a/ext/sqlite/sqlite.c +++ b/ext/sqlite/sqlite.c @@ -1756,17 +1756,12 @@ PHP_FUNCTION(sqlite_fetch_object) fci.params = NULL; } fci.no_separation = 1; - fcc.initialized = 1; - fcc.function_handler = ce->constructor; - fcc.calling_scope = EG(scope); - fcc.object_pp = &return_value; - if (zend_call_function(&fci, &fcc TSRMLS_CC) == FAILURE) { zend_throw_exception_ex(sqlite_ce_exception, 0 TSRMLS_CC, "Could not execute %s::%s()", class_name, ce->constructor->common.function_name); } else { |