diff options
author | Rich Felker <dalias@aerifal.cx> | 2014-05-27 00:44:23 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2014-05-27 00:44:23 -0400 |
commit | 2fe6579125fe042f2255afbf00fc8e4b80d6a6be (patch) | |
tree | 153294950c138c8cbef7ca3a9dd145f99f7afc6e /src/stdio/tmpfile.c | |
parent | 9b880a6b4112b0b3c0bd07949f7836daeea4e712 (diff) | |
download | musl-2fe6579125fe042f2255afbf00fc8e4b80d6a6be.tar.gz musl-2fe6579125fe042f2255afbf00fc8e4b80d6a6be.tar.xz musl-2fe6579125fe042f2255afbf00fc8e4b80d6a6be.zip |
overhaul tmpfile, tmpnam, and tempnam functions
these all now use the shared __randname function internally, rather than duplicating logic for producing a random name. incorrect usage of the access syscall (which works with real uid/gid, not effective) has been removed, along with unnecessary heavy dependencies like snprintf.
Diffstat (limited to 'src/stdio/tmpfile.c')
-rw-r--r-- | src/stdio/tmpfile.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/stdio/tmpfile.c b/src/stdio/tmpfile.c index b0d0ba07..c8569948 100644 --- a/src/stdio/tmpfile.c +++ b/src/stdio/tmpfile.c @@ -1,19 +1,19 @@ #include <stdio.h> #include <fcntl.h> -#include <unistd.h> #include "stdio_impl.h" #define MAXTRIES 100 +char *__randname(char *); + FILE *tmpfile(void) { - char buf[L_tmpnam], *s; + char s[] = "/tmp/tmpfile_XXXXXX"; int fd; FILE *f; int try; for (try=0; try<MAXTRIES; try++) { - s = tmpnam(buf); - if (!s) return 0; + __randname(s+13); fd = sys_open(s, O_RDWR|O_CREAT|O_EXCL, 0600); if (fd >= 0) { f = __fdopen(fd, "w+"); |