From: Fredrik Fornwall Date: Mon, 11 Apr 2016 11:22:10 +0000 (-0400) Subject: stdio.h: Use arc4random() instead of random() X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/termux-packages/commitdiff_plain/2c4c89b3bccef80e8d731220f02392249b2592c8 stdio.h: Use arc4random() instead of random() --- diff --git a/ndk_patches/stdio.h.patch b/ndk_patches/stdio.h.patch index b7cb7fc4..600c79e1 100644 --- a/ndk_patches/stdio.h.patch +++ b/ndk_patches/stdio.h.patch @@ -7,7 +7,7 @@ diff -u -r /home/fornwall/lib/android-ndk/platforms/android-21/arch-arm/usr/incl +#include /* For strcpy(3) used by ctermid() */ +#include /* For O_RDWR and other O_* constants */ -+#include /* For random() */ ++#include /* For arc4random() */ + #define __need_NULL #include @@ -57,8 +57,8 @@ diff -u -r /home/fornwall/lib/android-ndk/platforms/android-21/arch-arm/usr/incl + char* path; + int i; + for (i = 0; i < 100; i++) { -+ long int r = random(); -+ if (asprintf(&path, "@TERMUX_PREFIX@/tmp/tmpfile.%d-%l", p, r) == -1) return NULL; ++ 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); + free(path); + if (fd >= 0) {