You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I can't reproduce this one on c8bead8 (before my recent hook changes), nor on the latest commit. I tried ASan and Valgrind, opcache and JITs. Edit: Ah, nevermind. I made some changes to the test I thought wouldn't make a difference. 😄
nielsdos
added a commit
to nielsdos/php-src
that referenced
this issue
Feb 27, 2025
zend_std_write_property() can return the variable pointer, but the code
was using a local variable, and so a pointer to a local variable could
be returned. Fix this by using the value pointer instead.
This can be more efficient on master by using the safe_assign helper.
zend_std_write_property() can return the variable pointer, but the code
was using a local variable, and so a pointer to a local variable could
be returned. Fix this by using the value pointer instead of the backup
value was written.
This can be more efficient on master by using the safe_assign helper.
Description
The following code:
Resulted in this output:
But I expected this output instead:
PHP Version
8.4+
Operating System
Linux
The text was updated successfully, but these errors were encountered: