Change maketempfile() to return a FILE* so as to eliminate the fopen()

that immediately follows the only call to it. maketempfile() uses
mkstemp(), so the temporary file has already been opened and using
fopen() again just opens the file twice. This also fixes the invalid
mode used on the fopen().
While here, assign NULL to fxref after fclose() because we test for
fxref being !NULL to determine if we have the (temporary) hints file
open.
This commit is contained in:
Marcel Moolenaar 2006-07-29 19:39:03 +00:00
parent 09bf29a41f
commit 9ceddbd532
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=160818

View File

@ -86,7 +86,7 @@ static const char *xref_file = "linker.hints";
static char recbuf[MAXRECSIZE];
static int recpos, reccnt;
void maketempfile(char *, const char *);
FILE *maketempfile(char *, const char *);
static void usage(void);
static void
@ -253,10 +253,11 @@ read_kld(char *filename, char *kldname)
return error;
}
void
FILE *
maketempfile(char *dest, const char *root)
{
char *p;
int fd;
strncpy(dest, root, MAXPATHLEN - 1);
dest[MAXPATHLEN] = '\0';
@ -266,8 +267,8 @@ maketempfile(char *dest, const char *root)
else
p = dest;
strcpy(p, "lhint.XXXXXX");
if (mkstemp(dest) == -1)
err(1, "%s", dest);
fd = mkstemp(dest);
return ((fd == -1) ? NULL : fdopen(fd, "w+"));
}
static char xrefname[MAXPATHLEN], tempname[MAXPATHLEN];
@ -322,6 +323,7 @@ main(int argc, char *argv[])
p = fts_read(ftsp);
if ((p == NULL || p->fts_info == FTS_D) && !dflag && fxref) {
fclose(fxref);
fxref = NULL;
if (reccnt) {
rename(tempname, xrefname);
} else {
@ -334,8 +336,7 @@ main(int argc, char *argv[])
if (p && p->fts_info == FTS_D && !dflag) {
snprintf(xrefname, sizeof(xrefname), "%s/%s",
ftsp->fts_path, xref_file);
maketempfile(tempname, ftsp->fts_path);
fxref = fopen(tempname, "w+t");
fxref = maketempfile(tempname, ftsp->fts_path);
if (fxref == NULL)
err(1, "can't create %s", tempname);
ival = 1;