sslproc: call rb_clear_cloexec on child fds
This commit is contained in:
parent
71325a9801
commit
6865484458
1 changed files with 3 additions and 4 deletions
|
@ -322,10 +322,9 @@ start_ssldaemon(int count)
|
|||
rb_setenv("CTL_PIPE", fdarg, 1);
|
||||
snprintf(s_pid, sizeof(s_pid), "%d", (int)getpid());
|
||||
rb_setenv("CTL_PPID", s_pid, 1);
|
||||
#ifdef _WIN32
|
||||
SetHandleInformation((HANDLE) rb_get_fd(F2), HANDLE_FLAG_INHERIT, 1);
|
||||
SetHandleInformation((HANDLE) rb_get_fd(P1), HANDLE_FLAG_INHERIT, 1);
|
||||
#endif
|
||||
|
||||
rb_clear_cloexec(F2);
|
||||
rb_clear_cloexec(P1);
|
||||
|
||||
pid = rb_spawn_process(ssld_path, (const char **) parv);
|
||||
if(pid == -1)
|
||||
|
|
Loading…
Reference in a new issue