summaryrefslogtreecommitdiff
path: root/Zend/zend_compile.c
diff options
context:
space:
mode:
authorXinchen Hui <laruence@gmail.com>2014-02-26 12:52:43 +0800
committerXinchen Hui <laruence@gmail.com>2014-02-26 12:52:43 +0800
commit66b7f6722d16a261243390ed2afdc97de15b5f93 (patch)
treed59b5611b79c442e471094e9c3e2951965a4d397 /Zend/zend_compile.c
parent80a178015d6b162ff0ba7a8e8f5a08c88829cc3c (diff)
parent4a1ecf0e8b04363901c92aea55a203fc73a24b95 (diff)
downloadphp-git-66b7f6722d16a261243390ed2afdc97de15b5f93.tar.gz
Merge branch 'refactoring2' of github.com:zendtech/php into refactoring2
Diffstat (limited to 'Zend/zend_compile.c')
-rw-r--r--Zend/zend_compile.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/zend_compile.c b/Zend/zend_compile.c
index aff6cad01c..66410d41d3 100644
--- a/Zend/zend_compile.c
+++ b/Zend/zend_compile.c
@@ -4594,8 +4594,8 @@ ZEND_API int do_bind_function(const zend_op_array *op_array, zend_op *opline, Ha
}
return FAILURE;
} else {
- (*new_function->op_array.refcount)++;
- new_function->op_array.static_variables = NULL; /* NULL out the unbound function */
+ (*function->op_array.refcount)++;
+ function->op_array.static_variables = NULL; /* NULL out the unbound function */
return SUCCESS;
}
}