aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMateusz Guzik <mjg@FreeBSD.org>2021-01-24 04:32:46 +0000
committerMateusz Guzik <mjg@FreeBSD.org>2021-02-01 12:39:15 +0000
commit410994f463351fe2899af77c797dd61c772b02cf (patch)
treedb4c4067e734b64b61eeec5fd84d6078630ae337
parent996912046b4d7188636cc4da6a3808010862e93e (diff)
downloadsrc-410994f463351fe2899af77c797dd61c772b02cf.tar.gz
src-410994f463351fe2899af77c797dd61c772b02cf.zip
libc: remove open-coded strlen in _gettemp
(cherry picked from commit 6fe328ace8f418bab0ab7f78c6fa1f2e757dd8a9)
-rw-r--r--lib/libc/stdio/mktemp.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/libc/stdio/mktemp.c b/lib/libc/stdio/mktemp.c
index f64eda748d0b..c47e0221e5cd 100644
--- a/lib/libc/stdio/mktemp.c
+++ b/lib/libc/stdio/mktemp.c
@@ -131,8 +131,7 @@ _gettemp(int dfd, char *path, int *doopen, int domkdir, int slen, int oflags)
return (0);
}
- for (trv = path; *trv != '\0'; ++trv)
- ;
+ trv = path + strlen(path);
if (trv - path >= MAXPATHLEN) {
errno = ENAMETOOLONG;
return (0);