summaryrefslogtreecommitdiffstats
path: root/package/busybox/patches/000-upstream-mktemp.patch
blob: a7727ca81f0c02c44610b3a90b50ba9dd8144374 (plain)
1
2
3
4
5
6
7
8
9
10
11
--- a/debianutils/mktemp.c
+++ b/debianutils/mktemp.c
@@ -50,7 +50,7 @@ int mktemp_main(int argc UNUSED_PARAM, c
 	opts = getopt32(argv, "dqtp:", &path);
 
 	chp = argv[optind] ? argv[optind] : xstrdup("tmp.XXXXXX");
-	if (chp[0] != '/' || (opts & 8))
+	if (!strchr(chp, '/') || (opts & 8))
 		chp = concat_path_file(path, chp);
 
 	if (opts & 1) { /* -d */