From: Andi Gutmans Date: Sat, 5 Jan 2002 20:55:56 +0000 (+0000) Subject: - Small fix X-Git-Tag: PRE_ISSET_PATCH~279 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e1876cba4dfa82643a2db41654e65b9cfd972e94;p=php - Small fix --- diff --git a/Zend/zend_compile.c b/Zend/zend_compile.c index 2cab42e070..a88a1473d8 100644 --- a/Zend/zend_compile.c +++ b/Zend/zend_compile.c @@ -926,7 +926,8 @@ void zend_do_begin_method_call(znode *left_bracket TSRMLS_DC) if (last_op->op2.op_type == IS_UNUSED && last_op->op2.u.EA.type == ZEND_FETCH_FROM_THIS) { last_op->op2 = last_op->op1; - memset(&last_op->op1, 0, sizeof(znode)); + memset(&last_op->op1, 0, sizeof(znode)); + SET_UNUSED(last_op->op1); last_op->extended_value = ZEND_FETCH_FROM_THIS; }