chiark
/
gitweb
/
~mdw
/
termux-packages
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
a663f77
)
stdio.h: Use arc4random() instead of random()
author
Fredrik Fornwall
<fredrik@fornwall.net>
Mon, 11 Apr 2016 11:22:10 +0000
(07:22 -0400)
committer
Fredrik Fornwall
<fredrik@fornwall.net>
Mon, 11 Apr 2016 11:22:10 +0000
(07:22 -0400)
ndk_patches/stdio.h.patch
patch
|
blob
|
blame
|
history
diff --git
a/ndk_patches/stdio.h.patch
b/ndk_patches/stdio.h.patch
index b7cb7fc47b46495f2401ee3b1d0156a855523d67..600c79e1a16f5598e9b2192f8b4e06821e3d58e4 100644
(file)
--- 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 <string.h> /* For strcpy(3) used by ctermid() */
+#include <fcntl.h> /* For O_RDWR and other O_* constants */
+#include <string.h> /* For strcpy(3) used by ctermid() */
+#include <fcntl.h> /* For O_RDWR and other O_* constants */
-+#include <stdlib.h> /* For random() */
++#include <stdlib.h> /* For
arc4
random() */
+
#define __need_NULL
#include <stddef.h>
+
#define __need_NULL
#include <stddef.h>
@@
-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++) {
+ 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 = arc4
random();
++ 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) {
+ int fd = open(path, O_RDWR | O_CREAT | O_EXCL | O_LARGEFILE);
+ free(path);
+ if (fd >= 0) {