diff options
-rw-r--r-- | ext/opcache/zend_accelerator_module.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/opcache/zend_accelerator_module.c b/ext/opcache/zend_accelerator_module.c index cdb63f7b88..a3c7bd7a14 100644 --- a/ext/opcache/zend_accelerator_module.c +++ b/ext/opcache/zend_accelerator_module.c @@ -910,9 +910,9 @@ ZEND_FUNCTION(opcache_is_script_cached) { zend_string *script_name; - if (zend_parse_parameters(ZEND_NUM_ARGS(), "S", &script_name) == FAILURE) { - RETURN_THROWS(); - } + ZEND_PARSE_PARAMETERS_START(1, 1) + Z_PARAM_STR(script_name) + ZEND_PARSE_PARAMETERS_END(); if (!validate_api_restriction()) { RETURN_FALSE; |