File tree Expand file tree Collapse file tree 3 files changed +6
-1
lines changed Expand file tree Collapse file tree 3 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,9 @@ PHP NEWS
16
16
- Date:
17
17
. Fix leaks with multiple calls to DatePeriod iterator current(). (nielsdos)
18
18
19
+ - FPM:
20
+ . Fixed GH-18662 (fpm_get_status segfault). (txuna)
21
+
19
22
- Intl:
20
23
. Fix memory leak in intl_datetime_decompose() on failure. (nielsdos)
21
24
Original file line number Diff line number Diff line change 22
22
#include "zlog.h"
23
23
24
24
static const char * requests_stages [] = {
25
+ [FPM_REQUEST_CREATING ] = "Creating" ,
25
26
[FPM_REQUEST_ACCEPTING ] = "Idle" ,
26
27
[FPM_REQUEST_READING_HEADERS ] = "Reading headers" ,
27
28
[FPM_REQUEST_INFO ] = "Getting request information" ,
Original file line number Diff line number Diff line change @@ -25,7 +25,8 @@ const char *fpm_request_get_stage_name(int stage);
25
25
int fpm_request_last_activity (struct fpm_child_s * child , struct timeval * tv );
26
26
27
27
enum fpm_request_stage_e {
28
- FPM_REQUEST_ACCEPTING = 1 ,
28
+ FPM_REQUEST_CREATING ,
29
+ FPM_REQUEST_ACCEPTING ,
29
30
FPM_REQUEST_READING_HEADERS ,
30
31
FPM_REQUEST_INFO ,
31
32
FPM_REQUEST_EXECUTING ,
You can’t perform that action at this time.
0 commit comments