diff options
Diffstat (limited to 'source3')
-rw-r--r-- | source3/lib/pidfile.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source3/lib/pidfile.c b/source3/lib/pidfile.c index 2c52d12122..a3e39db784 100644 --- a/source3/lib/pidfile.c +++ b/source3/lib/pidfile.c @@ -145,6 +145,9 @@ void pidfile_create(const char *program_name) } /* Leave pid file open & locked for the duration... */ SAFE_FREE(name); + + /* set the close on exec so that we don't leak the fd */ + fcntl(fd, F_SETFD, FD_CLOEXEC); } void pidfile_unlink(void) |