diff options
author | Stanislav Malyshev <stas@php.net> | 2008-12-15 11:29:36 +0000 |
---|---|---|
committer | Stanislav Malyshev <stas@php.net> | 2008-12-15 11:29:36 +0000 |
commit | feb50cd7623e1422f3a80f2d74db10c60ef30038 (patch) | |
tree | 4b8a82db829f398a2377a827c65e3e2d10ffd3c5 /Zend/zend_compile.c | |
parent | 29f49d2ded89fa562eb863eec23f4ce21c1331b1 (diff) | |
download | php-git-feb50cd7623e1422f3a80f2d74db10c60ef30038.tar.gz |
initialize op1
Diffstat (limited to 'Zend/zend_compile.c')
-rw-r--r-- | Zend/zend_compile.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Zend/zend_compile.c b/Zend/zend_compile.c index c8017da0ef..06a773fd98 100644 --- a/Zend/zend_compile.c +++ b/Zend/zend_compile.c @@ -1664,6 +1664,7 @@ void zend_do_begin_dynamic_function_call(znode *function_name, int ns_call TSRML Z_LVAL(opline2->op1.u.constant) = prefix_len; /* this is the hash of the non-prefixed part, lowercased */ opline2->extended_value = zend_hash_func(slash+1, name_len+1); + SET_UNUSED(opline2->op2); } else { opline->opcode = ZEND_INIT_FCALL_BY_NAME; opline->op2 = *function_name; |