Skip to content

Commit c74fc4c

Browse files
committed
Merge branch 'PHP-8.2' into PHP-8.3
2 parents 8c9b599 + 2303e76 commit c74fc4c

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

NEWS

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ PHP NEWS
77
ZEND_FUNC_GET_ARGS and ZEND_BIND_STATIC). (Florian Engelhardt)
88
. Fix various missing NULL checks. (nielsdos, dstogov)
99

10+
- FPM:
11+
. Fixed bug GH-12705 (Segmentation fault in fpm_status_export_to_zval).
12+
(Patrick Prasse)
13+
1014
- LibXML:
1115
. Fixed test failures for libxml2 2.12.0. (nielsdos)
1216

sapi/fpm/fpm/fpm_status.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ int fpm_status_export_to_zval(zval *status)
5656

5757
scoreboard_p = fpm_scoreboard_acquire(NULL, 1);
5858
if (!scoreboard_p) {
59-
zlog(ZLOG_NOTICE, "[pool %s] status: scoreboard already in use.", scoreboard_p->pool);
59+
zlog(ZLOG_NOTICE, "[pool (unknown)] status: scoreboard already in use.");
6060
return -1;
6161
}
6262

0 commit comments

Comments
 (0)