Fixed double free

This commit is contained in:
Dmitry Stogov 2014-04-11 16:48:38 +04:00
parent 2614d945f8
commit 13f0c8b18c

View File

@ -6256,9 +6256,6 @@ void zend_do_indirect_references(znode *result, const znode *num_references, zno
if (CG(active_op_array)->scope && CG(active_op_array)->this_var == -1) {
zend_string *key = STR_INIT("this", sizeof("this")-1, 0);
CG(active_op_array)->this_var = lookup_cv(CG(active_op_array), key TSRMLS_CC);
if (CG(active_op_array)->vars[EX_VAR_TO_NUM(CG(active_op_array)->this_var)] != key) {
STR_RELEASE(key);
}
}
}
/* }}} */