Merge pull request #269 from michalbednarski/tmpfile

ndk_patches: Add missing argument to open(, O_CREAT) in tmpfile()
This commit is contained in:
Fredrik Fornwall 2016-05-12 22:39:05 +02:00
commit 3445cfbd7b
1 changed files with 1 additions and 1 deletions

View File

@ -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+");