Module Name: src
Committed By: rillig
Date: Sun Nov 15 09:38:44 UTC 2020
Modified Files:
src/usr.bin/make: main.c
Log Message:
make(1): clean up getTmpdir
Reduce indentation, structure code into paragraphs.
To generate a diff of this commit:
cvs rdiff -u -r1.472 -r1.473 src/usr.bin/make/main.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/usr.bin/make/main.c
diff -u src/usr.bin/make/main.c:1.472 src/usr.bin/make/main.c:1.473
--- src/usr.bin/make/main.c:1.472 Sun Nov 15 09:33:50 2020
+++ src/usr.bin/make/main.c Sun Nov 15 09:38:44 2020
@@ -1,4 +1,4 @@
-/* $NetBSD: main.c,v 1.472 2020/11/15 09:33:50 rillig Exp $ */
+/* $NetBSD: main.c,v 1.473 2020/11/15 09:38:44 rillig Exp $ */
/*
* Copyright (c) 1988, 1989, 1990, 1993
@@ -109,7 +109,7 @@
#include "trace.h"
/* "@(#)main.c 8.3 (Berkeley) 3/19/94" */
-MAKE_RCSID("$NetBSD: main.c,v 1.472 2020/11/15 09:33:50 rillig Exp $");
+MAKE_RCSID("$NetBSD: main.c,v 1.473 2020/11/15 09:38:44 rillig Exp $");
#if defined(MAKE_NATIVE) && !defined(lint)
__COPYRIGHT("@(#) Copyright (c) 1988, 1989, 1990, 1993 "
"The Regents of the University of California. "
@@ -2174,21 +2174,19 @@ char *
getTmpdir(void)
{
static char *tmpdir = NULL;
+ struct stat st;
- if (tmpdir == NULL) {
- struct stat st;
+ if (tmpdir != NULL)
+ return tmpdir;
- /*
- * Honor $TMPDIR but only if it is valid.
- * Ensure it ends with /.
- */
- (void)Var_Subst("${TMPDIR:tA:U" _PATH_TMP "}/", VAR_GLOBAL,
- VARE_WANTRES, &tmpdir);
- /* TODO: handle errors */
- if (stat(tmpdir, &st) < 0 || !S_ISDIR(st.st_mode)) {
- free(tmpdir);
- tmpdir = bmake_strdup(_PATH_TMP);
- }
+ /* Honor $TMPDIR but only if it is valid. Ensure it ends with '/'. */
+ (void)Var_Subst("${TMPDIR:tA:U" _PATH_TMP "}/",
+ VAR_GLOBAL, VARE_WANTRES, &tmpdir);
+ /* TODO: handle errors */
+
+ if (stat(tmpdir, &st) < 0 || !S_ISDIR(st.st_mode)) {
+ free(tmpdir);
+ tmpdir = bmake_strdup(_PATH_TMP);
}
return tmpdir;
}