File tree 2 files changed +3
-1
lines changed
2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -49,6 +49,8 @@ PHP NEWS
49
49
. Fixed bug GH-13437 (FPM: ERROR: scoreboard: failed to lock (already
50
50
locked)). (Jakub Zelenka)
51
51
. Fixed bug GH-17112 (Macro redefinitions). (cmb, nielsdos)
52
+ . Fixed bug GH-17208 (bug64539-status-json-encoding.phpt fail on 32-bits).
53
+ (nielsdos)
52
54
53
55
- GD:
54
56
. Fixed bug GH-16255 (Unexpected nan value in ext/gd/libgd/gd_filter.c).
Original file line number Diff line number Diff line change @@ -608,7 +608,7 @@ int fpm_status_handle_request(void) /* {{{ */
608
608
time_buffer ,
609
609
(unsigned long ) (now_epoch - proc -> start_epoch ),
610
610
proc -> requests ,
611
- duration .tv_sec * 1000000UL + duration .tv_usec ,
611
+ ( unsigned long ) ( duration .tv_sec * 1000000UL + duration .tv_usec ) ,
612
612
proc -> request_method [0 ] != '\0' ? proc -> request_method : "-" ,
613
613
proc -> request_uri [0 ] != '\0' ? proc -> request_uri : "-" ,
614
614
query_string ? "?" : "" ,
You can’t perform that action at this time.
0 commit comments