diff options
author | Dmitry Stogov <dmitry@zend.com> | 2016-04-27 13:46:38 +0300 |
---|---|---|
committer | Dmitry Stogov <dmitry@zend.com> | 2016-04-27 13:46:38 +0300 |
commit | f0a2e8eb13b3971ec11baa2a6029ed7c4cb0064b (patch) | |
tree | eac694e9f9f4f521947d7b27a51db7bd83e30c70 /ext/pdo | |
parent | 1a154c7db5685361a14e4f2985a292f6cfc3a7bf (diff) | |
download | php-git-f0a2e8eb13b3971ec11baa2a6029ed7c4cb0064b.tar.gz |
Removed "zend_fcall_info.function_table". It was assigned in many places, but is never used.
Diffstat (limited to 'ext/pdo')
-rw-r--r-- | ext/pdo/pdo_dbh.c | 1 | ||||
-rw-r--r-- | ext/pdo/pdo_stmt.c | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/ext/pdo/pdo_dbh.c b/ext/pdo/pdo_dbh.c index 1d77f3e0eb..68c9d67a6a 100644 --- a/ext/pdo/pdo_dbh.c +++ b/ext/pdo/pdo_dbh.c @@ -436,7 +436,6 @@ static void pdo_stmt_construct(zend_execute_data *execute_data, pdo_stmt_t *stmt zval retval; fci.size = sizeof(zend_fcall_info); - fci.function_table = &dbstmt_ce->function_table; ZVAL_UNDEF(&fci.function_name); fci.object = Z_OBJ_P(object); fci.retval = &retval; diff --git a/ext/pdo/pdo_stmt.c b/ext/pdo/pdo_stmt.c index da557b8597..91546c02c5 100644 --- a/ext/pdo/pdo_stmt.c +++ b/ext/pdo/pdo_stmt.c @@ -740,7 +740,6 @@ static int do_fetch_class_prepare(pdo_stmt_t *stmt) /* {{{ */ } if (ce->constructor) { - fci->function_table = &ce->function_table; ZVAL_UNDEF(&fci->function_name); fci->retval = &stmt->fetch.cls.retval; fci->param_count = 0; |