diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-10-16 09:16:36 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-10-16 09:19:27 +0000 |
commit | 45a6880d789414b85028c8e7b56f920f162d2d04 (patch) | |
tree | 825c9168068104e8d014bd5dcb93cd91f785ec15 /tests | |
parent | Merge pull request #4502 (diff) | |
download | monero-45a6880d789414b85028c8e7b56f920f162d2d04.tar.xz |
unit_tests: call umask before mkstemp
Coverity 188788
Diffstat (limited to 'tests')
-rw-r--r-- | tests/unit_tests/notify.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/unit_tests/notify.cpp b/tests/unit_tests/notify.cpp index d6811c6bd..e2477a76e 100644 --- a/tests/unit_tests/notify.cpp +++ b/tests/unit_tests/notify.cpp @@ -26,6 +26,10 @@ // STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF // THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +#ifdef __GLIBC__ +#include <sys/stat.h> +#endif + #include "gtest/gtest.h" #include <boost/filesystem.hpp> @@ -37,8 +41,14 @@ TEST(notify, works) { +#ifdef __GLIBC__ + mode_t prevmode = umask(077); +#endif char name_template[] = "/tmp/monero-notify-unit-test-XXXXXX"; int fd = mkstemp(name_template); +#ifdef __GLIBC__ + umask(prevmode); +#endif ASSERT_TRUE(fd >= 0); close(fd); |