Commit fb72aa38 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Another close-on-exec

parent d2357816
...@@ -423,6 +423,9 @@ int __net_Accept( vlc_object_t *p_this, int *pi_fd, mtime_t i_wait ) ...@@ -423,6 +423,9 @@ int __net_Accept( vlc_object_t *p_this, int *pi_fd, mtime_t i_wait )
} }
else else
{ {
#ifdef FD_CLOEXEC
fcntl( i_fd, F_SETFD, FD_CLOEXEC );
#endif
/* /*
* This round-robin trick ensures that the first sockets in * This round-robin trick ensures that the first sockets in
* pi_fd won't prevent the last ones from getting accept'ed. * pi_fd won't prevent the last ones from getting accept'ed.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment