diff options
author | Dmitry Stogov <dmitry@zend.com> | 2015-06-17 12:07:43 +0300 |
---|---|---|
committer | Dmitry Stogov <dmitry@zend.com> | 2015-06-17 12:07:43 +0300 |
commit | a524a375d928366cc971b938f386556d1ef3d6e7 (patch) | |
tree | dff59aca87c1d125c7ff194db7fd44cadb70c7af /Zend/zend_opcode.c | |
parent | 8c8ad8f40ed9af2d95057a078dbaa844d072cb68 (diff) | |
download | php-git-a524a375d928366cc971b938f386556d1ef3d6e7.tar.gz |
Improved class type hints checks, by caching resolved class entries in run-time cache.
Diffstat (limited to 'Zend/zend_opcode.c')
-rw-r--r-- | Zend/zend_opcode.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Zend/zend_opcode.c b/Zend/zend_opcode.c index abb91b1ee3..1c760c5902 100644 --- a/Zend/zend_opcode.c +++ b/Zend/zend_opcode.c @@ -410,10 +410,6 @@ ZEND_API void destroy_op_array(zend_op_array *op_array) } if (arg_info[i].class_name) { zend_string_release(arg_info[i].class_name); - - if (arg_info[i].lower_class_name) { - zend_string_release(arg_info[i].lower_class_name); - } } } efree(arg_info); |