chiark
/
gitweb
/
~mdw
/
termux-packages
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(from parent 1:
4a9eb85
)
Merge pull request #269 from michalbednarski/tmpfile
author
Fredrik Fornwall
<fredrik@fornwall.net>
Thu, 12 May 2016 20:39:05 +0000
(22:39 +0200)
committer
Fredrik Fornwall
<fredrik@fornwall.net>
Thu, 12 May 2016 20:39:05 +0000
(22:39 +0200)
ndk_patches: Add missing argument to open(, O_CREAT) in tmpfile()
ndk_patches/stdio.h.patch
patch
|
blob
|
blame
|
history
diff --git
a/ndk_patches/stdio.h.patch
b/ndk_patches/stdio.h.patch
index 325fcf3cd097ac30657c3bd999f2e4c7f53e0c3e..d8f662678bb55544c49ba4637e200a90c0721b76 100644
(file)
--- 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+");