From: Fredrik Fornwall Date: Thu, 12 May 2016 20:39:05 +0000 (+0200) Subject: Merge pull request #269 from michalbednarski/tmpfile X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/termux-packages/commitdiff_plain/3445cfbd7b038d441b2f11a853e8b7110ed2f14c?hp=4a9eb8522e1c718af5e77352801855a6020cd604 Merge pull request #269 from michalbednarski/tmpfile ndk_patches: Add missing argument to open(, O_CREAT) in tmpfile() --- diff --git a/ndk_patches/stdio.h.patch b/ndk_patches/stdio.h.patch index 325fcf3c..d8f66267 100644 --- a/ndk_patches/stdio.h.patch +++ b/ndk_patches/stdio.h.patch @@ -62,7 +62,7 @@ diff -u -r /home/fornwall/lib/android-ndk/platforms/android-21/arch-arm/usr/incl + for (i = 0; i < 100; i++) { + unsigned int r = arc4random(); + if (asprintf(&path, "@TERMUX_PREFIX@/tmp/tmpfile.%d-%u", p, r) == -1) return NULL; -+ int fd = open(path, O_RDWR | O_CREAT | O_EXCL | O_LARGEFILE); ++ int fd = open(path, O_RDWR | O_CREAT | O_EXCL | O_LARGEFILE, 0600); + free(path); + if (fd >= 0) { + FILE* result = fdopen(fd, "w+");