1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

Merge branch 'PHP-8.3'

* PHP-8.3:
  Make the `fcc` parameter `const` in `zend_call_known_fcc` (#14259)
This commit is contained in:
Tim Düsterhus
2024-05-17 16:14:45 +02:00

View File

@@ -838,7 +838,7 @@ ZEND_API void zend_call_known_function(
uint32_t param_count, zval *params, HashTable *named_params);
static zend_always_inline void zend_call_known_fcc(
zend_fcall_info_cache *fcc, zval *retval_ptr, uint32_t param_count, zval *params, HashTable *named_params)
const zend_fcall_info_cache *fcc, zval *retval_ptr, uint32_t param_count, zval *params, HashTable *named_params)
{
zend_function *func = fcc->function_handler;
/* Need to copy trampolines as they get released after they are called */