diff options
author | Max Romanov <max.romanov@nginx.com> | 2017-11-20 17:08:29 +0300 |
---|---|---|
committer | Max Romanov <max.romanov@nginx.com> | 2017-11-20 17:08:29 +0300 |
commit | 6bbed85899d16b063df41ffc2cbf314402ad73e6 (patch) | |
tree | 79ac837f8c959bc19a7bb1beafaacf336681b7d7 /src/nxt_process.c | |
parent | fa76ea700ff2326c929f9c9f5ff40915a41d0a89 (diff) | |
download | unit-6bbed85899d16b063df41ffc2cbf314402ad73e6.tar.gz unit-6bbed85899d16b063df41ffc2cbf314402ad73e6.tar.bz2 |
Fixing Coverity warnings.
CID 200496
CID 200494
CID 200490
CID 200489
CID 200483
CID 200482
CID 200472
CID 200465
Diffstat (limited to 'src/nxt_process.c')
-rw-r--r-- | src/nxt_process.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/nxt_process.c b/src/nxt_process.c index 4d0241ec..f1c00e4e 100644 --- a/src/nxt_process.c +++ b/src/nxt_process.c @@ -299,6 +299,8 @@ nxt_process_daemon(nxt_task_t *task) nxt_pid_t pid; const char *msg; + fd = -1; + /* * fork() followed by a parent process's exit() detaches a child process * from an init script or terminal shell process which has started the @@ -372,6 +374,10 @@ fail: nxt_log(task, NXT_LOG_CRIT, msg, nxt_errno); + if (fd != -1) { + nxt_fd_close(fd); + } + return NXT_ERROR; } |