Skip to content

Commit

Permalink
Fix internal runtime cache function name
Browse files Browse the repository at this point in the history
  • Loading branch information
bwoebi authored Jan 7, 2025
1 parent 3e1329c commit 963ceb6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion profiling/src/php_ffi.c
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ void ddog_php_prof_function_run_time_cache_init(const char *module_name) {
// On PHP 8.4+, the internal cache slots need to be registered separately
// from the user ones.
_internal_run_time_cache_handle =
zend_get_op_array_extension_handles(module_name, 2);
zend_get_internal_function_extension_handle(module_name, 2);
#endif

#endif
Expand Down

0 comments on commit 963ceb6

Please sign in to comment.