From: Stanislav Malyshev Date: Mon, 1 Sep 2014 22:17:05 +0000 (-0700) Subject: Fix ZTS build X-Git-Tag: PRE_PHP7_REMOVALS~162 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a7666a6041794b0b4d03252c864312ad29105295;p=php Fix ZTS build --- diff --git a/Zend/zend_ini.c b/Zend/zend_ini.c index 21c2c2204e..3708efad6c 100644 --- a/Zend/zend_ini.c +++ b/Zend/zend_ini.c @@ -251,7 +251,7 @@ static int zend_ini_refresh_cache(zval *el, void *arg TSRMLS_DC) /* {{{ */ int stage = (int)(zend_intptr_t)arg; if (p->on_modify) { - p->on_modify(p, p->value, p->value_length, p->mh_arg1, p->mh_arg2, p->mh_arg3, stage TSRMLS_CC); + p->on_modify(p, p->value, p->mh_arg1, p->mh_arg2, p->mh_arg3, stage TSRMLS_CC); } return 0; }