File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -49,6 +49,8 @@ PHP NEWS
4949 . Fixed bug GH-13437 (FPM: ERROR: scoreboard: failed to lock (already
5050 locked)). (Jakub Zelenka)
5151 . Fixed bug GH-17112 (Macro redefinitions). (cmb, nielsdos)
52+ . Fixed bug GH-17208 (bug64539-status-json-encoding.phpt fail on 32-bits).
53+ (nielsdos)
5254
5355- GD:
5456 . 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) /* {{{ */
608608 time_buffer ,
609609 (unsigned long ) (now_epoch - proc -> start_epoch ),
610610 proc -> requests ,
611- duration .tv_sec * 1000000UL + duration .tv_usec ,
611+ ( unsigned long ) ( duration .tv_sec * 1000000UL + duration .tv_usec ) ,
612612 proc -> request_method [0 ] != '\0' ? proc -> request_method : "-" ,
613613 proc -> request_uri [0 ] != '\0' ? proc -> request_uri : "-" ,
614614 query_string ? "?" : "" ,
You can’t perform that action at this time.
0 commit comments