diff options
author | Marcus Boerger <helly@php.net> | 2005-02-20 14:31:44 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2005-02-20 14:31:44 +0000 |
commit | 5a2620349ee8ef934c6edbd57c08d45cfbc33800 (patch) | |
tree | 7f74d655d0f79b5533e5b30f651cb90c60a43c11 /ext/pdo/php_pdo_driver.h | |
parent | 883ee83478177ebb220bef6634dcc2c6749a8625 (diff) | |
download | php-git-5a2620349ee8ef934c6edbd57c08d45cfbc33800.tar.gz |
- Fix memleak and optimize PDO_FETCH_CLASS
Diffstat (limited to 'ext/pdo/php_pdo_driver.h')
-rwxr-xr-x | ext/pdo/php_pdo_driver.h | 3 |
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; |