From: Dmitry Stogov Date: Tue, 9 Apr 2013 08:03:41 +0000 (+0400) Subject: Fixed ZTS build X-Git-Tag: php-5.5.0beta3~4 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4bf1f3801b26a6c491a5deaeafef0b0b6d175a09;p=php Fixed ZTS build --- diff --git a/ext/opcache/zend_accelerator_module.c b/ext/opcache/zend_accelerator_module.c index 94a6b6b190..33ccba5b86 100644 --- a/ext/opcache/zend_accelerator_module.c +++ b/ext/opcache/zend_accelerator_module.c @@ -658,7 +658,7 @@ static ZEND_FUNCTION(opcache_invalidate) return; } - if (zend_accel_invalidate(script_name, script_name_len, force) == SUCCESS) { + if (zend_accel_invalidate(script_name, script_name_len, force TSRMLS_CC) == SUCCESS) { RETURN_TRUE; } else { RETURN_FALSE;