History log of /PHP-8.1/Zend/tests/call_user_func_by_ref.phpt (Results 1 – 1 of 1)
Revision Date Author Comments
# 01453a0a 17-Sep-2021 Nikita Popov

Fix SEND_USER with ref arg

Even though the input is not a reference (or not treated as such),
we still need to create a reference to satisfy the function
signature. Various code reli

Fix SEND_USER with ref arg

Even though the input is not a reference (or not treated as such),
we still need to create a reference to satisfy the function
signature. Various code relies on reference arguments actually
being references. In this particular case, it would result in
a JIT crash.

The zend_call_function() implementation already handled this
correctly.

show more ...