We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c3cff2 commit 7acce8aCopy full SHA for 7acce8a
Zend/zend_object_handlers.c
@@ -1731,6 +1731,9 @@ ZEND_API zend_function *zend_get_property_hook_trampoline(
1731
func = (zend_function *)(uintptr_t)ecalloc(1, sizeof(zend_internal_function));
1732
}
1733
func->type = ZEND_INTERNAL_FUNCTION;
1734
+ /* This trampoline does not use the call_trampoline_op, so it won't reuse the call frame,
1735
+ * which means we don't even need to reserve a temporary for observers. */
1736
+ func->common.T = 0;
1737
func->common.arg_flags[0] = 0;
1738
func->common.arg_flags[1] = 0;
1739
func->common.arg_flags[2] = 0;
0 commit comments