From: Dmitry Stogov Date: Tue, 25 Feb 2014 19:56:09 +0000 (+0400) Subject: Fixed handling of "static" variables X-Git-Tag: POST_PHPNG_MERGE~412^2~520^2~4 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e4b5848859eccafdb9949186177c1f536132f754;p=php Fixed handling of "static" variables --- 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; } }