mirror of https://github.com/mirror/busybox.git
mktemp: fix "mktemp /path/to/tempfile.XXXXXX"
function old new delta mktemp_main 152 167 +15 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>1_18_stable
parent
c5bbd5d085
commit
04a5d5ad15
|
@ -50,7 +50,8 @@ int mktemp_main(int argc UNUSED_PARAM, char **argv)
|
|||
opts = getopt32(argv, "dqtp:", &path);
|
||||
|
||||
chp = argv[optind] ? argv[optind] : xstrdup("tmp.XXXXXX");
|
||||
chp = concat_path_file(path, chp);
|
||||
if (chp[0] != '/' || (opts & 8))
|
||||
chp = concat_path_file(path, chp);
|
||||
|
||||
if (opts & 1) { /* -d */
|
||||
if (mkdtemp(chp) == NULL)
|
||||
|
|
Loading…
Reference in New Issue