Skip to content

Commit 39efe8a

Browse files
committed
Merge branch 'PHP-8.3' into PHP-8.4
2 parents e44c13c + 48b4922 commit 39efe8a

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

NEWS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@ PHP NEWS
1616
- Date:
1717
. Fix leaks with multiple calls to DatePeriod iterator current(). (nielsdos)
1818

19+
- FPM:
20+
. Fixed GH-18662 (fpm_get_status segfault). (txuna)
21+
1922
- Intl:
2023
. Fix memory leak in intl_datetime_decompose() on failure. (nielsdos)
2124

sapi/fpm/fpm/fpm_request.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
#include "zlog.h"
2323

2424
static const char *requests_stages[] = {
25+
[FPM_REQUEST_CREATING] = "Creating",
2526
[FPM_REQUEST_ACCEPTING] = "Idle",
2627
[FPM_REQUEST_READING_HEADERS] = "Reading headers",
2728
[FPM_REQUEST_INFO] = "Getting request information",

sapi/fpm/fpm/fpm_request.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ const char *fpm_request_get_stage_name(int stage);
2525
int fpm_request_last_activity(struct fpm_child_s *child, struct timeval *tv);
2626

2727
enum fpm_request_stage_e {
28-
FPM_REQUEST_ACCEPTING = 1,
28+
FPM_REQUEST_CREATING,
29+
FPM_REQUEST_ACCEPTING,
2930
FPM_REQUEST_READING_HEADERS,
3031
FPM_REQUEST_INFO,
3132
FPM_REQUEST_EXECUTING,

0 commit comments

Comments
 (0)