We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5b4b177 + 05e9a57 commit 6124206Copy full SHA for 6124206
2 files changed
NEWS
@@ -5,6 +5,8 @@ PHP NEWS
5
- Core:
6
. Fixed bug GH-22290 (AST pretty printing does not correctly handle strings
7
containing NUL). (iliaal)
8
+ . Fixed bug GH-22206 (missing return in global register detection).
9
+ (P3p111n0)
10
11
- Reflection:
12
. Fixed bug GH-22324 (Ignore leading namespace separator in
Zend/Zend.m4
@@ -317,6 +317,7 @@ int emu(const opcode_handler_t *ip, void *fp) {
317
while ((*ip)());
318
FP = orig_fp;
319
IP = orig_ip;
320
+ return 0;
321
}], [])],
322
[php_cv_have_global_register_vars=yes],
323
[php_cv_have_global_register_vars=no])
0 commit comments