8000 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
COPY
  • Loading branch information
arnaud-lb committed Jul 3, 2025
commit 31cd429ef3321a6559013ad52cccaf4d34a45b0a
2 changes: 1 addition & 1 deletion ext/reflection/php_reflection.c
Original file line number Diff line number Diff line change
Expand Up @@ -1444,7 +1444,7 @@ static void reflection_parameter_factory(zend_function *fptr, zval *closure_obje
}

prop_name = reflection_prop_name(object);
ZVAL_STR(prop_name, arg_info->name);
ZVAL_STR_COPY(prop_name, arg_info->name);
}
/* }}} */

Expand Down
0