10000 Use the same zend_arg_info struct for internal and user functions by arnaud-lb · Pull Request #19022 · php/php-src · GitHub
[go: up one dir, main page]

Skip to content

Use the same zend_arg_info struct for internal and user functions #19022

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 11 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix signature
  • Loading branch information
arnaud-lb committed Jul 3, 2025
commit 9fba6b3e3d0050d504b4a644ab75a45a72b4c4ce
2 changes: 1 addition & 1 deletion Zend/zend_API.h
Original file line number Diff line number Diff line change
Expand Up @@ -933,7 +933,7 @@ void zend_convert_internal_arg_info(zend_arg_info *new_arg_info,
const zend_internal_arg_info *arg_info, bool is_return_info);

ZEND_API zend_result zend_get_default_from_arg_info(
zval *default_value_zval, zend_arg_info *arg_info);
zval *default_value_zval, const zend_arg_info *arg_info);

END_EXTERN_C()

Expand Down
0