diff options
author | Dmitry Stogov <dmitry@php.net> | 2005-07-04 13:24:46 +0000 |
---|---|---|
committer | Dmitry Stogov <dmitry@php.net> | 2005-07-04 13:24:46 +0000 |
commit | 343af548a68c05cc3953556660274a17d7817af4 (patch) | |
tree | f3b153752395e459b79d73701ce38e9b75417345 /Zend/zend_vm_def.h | |
parent | 1b9b6312c3a9c3e0c7ceb72729297cefdd96dd37 (diff) | |
download | php-git-343af548a68c05cc3953556660274a17d7817af4.tar.gz |
Fixed SIGSEGV on 'global ${"{$blah}_ID"};'
Diffstat (limited to 'Zend/zend_vm_def.h')
-rw-r--r-- | Zend/zend_vm_def.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Zend/zend_vm_def.h b/Zend/zend_vm_def.h index f41dd90744..6c98299fdc 100644 --- a/Zend/zend_vm_def.h +++ b/Zend/zend_vm_def.h @@ -926,9 +926,6 @@ ZEND_VM_HELPER_EX(zend_fetch_var_address_helper, CONST|TMP|VAR|CV, ANY, int type if (opline->op2.u.EA.type == ZEND_FETCH_STATIC_MEMBER) { retval = zend_std_get_static_property(EX_T(opline->op2.u.var).class_entry, Z_STRVAL_P(varname), Z_STRLEN_P(varname), 0 TSRMLS_CC); } else { - if (opline->op2.u.EA.type == ZEND_FETCH_GLOBAL && opline->op1.op_type == IS_VAR) { - varname->refcount++; - } target_symbol_table = zend_get_target_symbol_table(opline, EX(Ts), type, varname TSRMLS_CC); /* if (!target_symbol_table) { |