Skip to content

Commit 13f0c8b

Browse files
committed
Fixed double free
1 parent 2614d94 commit 13f0c8b

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

Zend/zend_compile.c

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6256,9 +6256,6 @@ void zend_do_indirect_references(znode *result, const znode *num_references, zno
62566256
if (CG(active_op_array)->scope && CG(active_op_array)->this_var == -1) {
62576257
zend_string *key = STR_INIT("this", sizeof("this")-1, 0);
62586258
CG(active_op_array)->this_var = lookup_cv(CG(active_op_array), key TSRMLS_CC);
6259-
if (CG(active_op_array)->vars[EX_VAR_TO_NUM(CG(active_op_array)->this_var)] != key) {
6260-
STR_RELEASE(key);
6261-
}
62626259
}
62636260
}
62646261
/* }}} */

0 commit comments

Comments
 (0)