diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-10-16 17:20:11 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-10-16 17:20:44 +0000 |
commit | a69fc05a0cf8eb9d3247bbb0006546ba4994a310 (patch) | |
tree | a2e6fcf22bb24c26aec5717a40712110a2edc25e /src | |
parent | Merge pull request #4610 (diff) | |
download | monero-a69fc05a0cf8eb9d3247bbb0006546ba4994a310.tar.xz |
util: close keys file lock on exec
Diffstat (limited to 'src')
-rw-r--r-- | src/common/util.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/util.cpp b/src/common/util.cpp index 2a1d49af0..7d8c9aa99 100644 --- a/src/common/util.cpp +++ b/src/common/util.cpp @@ -233,7 +233,7 @@ namespace tools MERROR("Failed to open " << filename << ": " << std::error_code(GetLastError(), std::system_category())); } #else - m_fd = open(filename.c_str(), O_RDONLY | O_CREAT, 0666); + m_fd = open(filename.c_str(), O_RDONLY | O_CREAT | O_CLOEXEC, 0666); if (m_fd != -1) { if (flock(m_fd, LOCK_EX | LOCK_NB) == -1) |