summaryrefslogtreecommitdiff
path: root/ext/sqlite/sqlite.c
diff options
context:
space:
mode:
Diffstat (limited to 'ext/sqlite/sqlite.c')
-rw-r--r--ext/sqlite/sqlite.c5
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 {