X-Git-Url: https://git.distorted.org.uk/~mdw/termux-packages/blobdiff_plain/02380b95b32d1b82a6fb31a3b1cab45de4a5026c..5bed869d0c3f8862a38b0b8360a8c60e9237a966:/ndk_patches/stdio.h.patch diff --git a/ndk_patches/stdio.h.patch b/ndk_patches/stdio.h.patch index 325fcf3c..8dfed604 100644 --- a/ndk_patches/stdio.h.patch +++ b/ndk_patches/stdio.h.patch @@ -6,7 +6,7 @@ diff -u -r /home/fornwall/lib/android-ndk/platforms/android-21/arch-arm/usr/incl #include +#include /* For strcpy(3) used by ctermid() */ -+#include /* For O_RDWR and other O_* constants */ ++#include /* For O_RDWR and other O_* constants */ +#include /* For arc4random() */ + #define __need_NULL @@ -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+");