From 4bf1f3801b26a6c491a5deaeafef0b0b6d175a09 Mon Sep 17 00:00:00 2001 From: Dmitry Stogov Date: Tue, 9 Apr 2013 12:03:41 +0400 Subject: [PATCH] Fixed ZTS build --- ext/opcache/zend_accelerator_module.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.40.0