Skip to content

Commit c2a9166

Browse files
committed
Merge branch 'PHP-8.3'
* PHP-8.3: Make the `fcc` parameter `const` in `zend_call_known_fcc` (#14259)
2 parents 73abf4f + a89d22c commit c2a9166

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Zend/zend_API.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -838,7 +838,7 @@ ZEND_API void zend_call_known_function(
838838
uint32_t param_count, zval *params, HashTable *named_params);
839839

840840
static zend_always_inline void zend_call_known_fcc(
841-
zend_fcall_info_cache *fcc, zval *retval_ptr, uint32_t param_count, zval *params, HashTable *named_params)
841+
const zend_fcall_info_cache *fcc, zval *retval_ptr, uint32_t param_count, zval *params, HashTable *named_params)
842842
{
843843
zend_function *func = fcc->function_handler;
844844
/* Need to copy trampolines as they get released after they are called */

0 commit comments

Comments
 (0)