summaryrefslogtreecommitdiff
path: root/ext/pdo/php_pdo_driver.h
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2005-02-20 14:31:44 +0000
committerMarcus Boerger <helly@php.net>2005-02-20 14:31:44 +0000
commit5a2620349ee8ef934c6edbd57c08d45cfbc33800 (patch)
tree7f74d655d0f79b5533e5b30f651cb90c60a43c11 /ext/pdo/php_pdo_driver.h
parent883ee83478177ebb220bef6634dcc2c6749a8625 (diff)
downloadphp-git-5a2620349ee8ef934c6edbd57c08d45cfbc33800.tar.gz
- Fix memleak and optimize PDO_FETCH_CLASS
Diffstat (limited to 'ext/pdo/php_pdo_driver.h')
-rwxr-xr-xext/pdo/php_pdo_driver.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/ext/pdo/php_pdo_driver.h b/ext/pdo/php_pdo_driver.h
index eaf1f742c4..6d3c4274b4 100755
--- a/ext/pdo/php_pdo_driver.h
+++ b/ext/pdo/php_pdo_driver.h
@@ -543,6 +543,9 @@ struct _pdo_stmt_t {
struct {
zend_class_entry *ce;
zval *ctor_args;
+ zval *retval_ptr;
+ zend_fcall_info fci;
+ zend_fcall_info_cache fcc;
} cls;
zval *into;
} fetch;