Follow-up for
12001b1bf067339db089d52e08fd0b4c6a9945df
It is part of the keep_fds array already, which is intended
for fds that need to survive until the very end of executor
runtime, i.e. across the second close_all_fds() call.
size_t n_fds) {
size_t n_dont_close = 0;
- int dont_close[n_fds + 19];
+ int dont_close[n_fds + 18];
assert(params);
assert(runtime);
if (params->user_lookup_fd >= 0)
dont_close[n_dont_close++] = params->user_lookup_fd;
- if (params->handoff_timestamp_fd >= 0)
- dont_close[n_dont_close++] = params->handoff_timestamp_fd;
-
if (params->pidref_transport_fd >= 0)
dont_close[n_dont_close++] = params->pidref_transport_fd;