diff options
author | Clint Adams <clint@users.sourceforge.net> | 2000-08-04 14:58:05 +0000 |
---|---|---|
committer | Clint Adams <clint@users.sourceforge.net> | 2000-08-04 14:58:05 +0000 |
commit | 971f7c0a19eefebe90274fde29c33e3a3a04b552 (patch) | |
tree | 69be97ff85336d5312f9bb3e5693e2fbae70d307 /Src | |
parent | 8e740b7044b1538b51b1a58f27d92091c1e84a63 (diff) | |
download | zsh-971f7c0a19eefebe90274fde29c33e3a3a04b552.tar.gz zsh-971f7c0a19eefebe90274fde29c33e3a3a04b552.tar.xz zsh-971f7c0a19eefebe90274fde29c33e3a3a04b552.zip |
12533: pathconf() without tail in mkdir
Diffstat (limited to 'Src')
-rw-r--r-- | Src/Modules/files.c | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/Src/Modules/files.c b/Src/Modules/files.c index d01a59b03..ac775c75a 100644 --- a/Src/Modules/files.c +++ b/Src/Modules/files.c @@ -71,6 +71,7 @@ bin_mkdir(char *nam, char **args, char *ops, int func) mode_t oumask = umask(0); mode_t mode = 0777 & ~oumask; int err = 0; + char *head; umask(oumask); if(ops['m']) { @@ -91,8 +92,19 @@ bin_mkdir(char *nam, char **args, char *ops, int func) while(ptr > *args + (**args == '/') && *--ptr == '/') *ptr = 0; - if(zpathmax(unmeta(*args)) < 0) { - zwarnnam(nam, "%s: %e", *args, errno); + +/* Drop the tail so that pathconf receives a potentially valid pathname */ + head = (char *) ztrdup(*args); + if ((ptr = strrchr(head, '/'))) + *ptr = 0; + else { +/* Relative to current directory */ + *head = '.'; + *(head + 1) = '\0'; + } + + if(zpathmax(unmeta(head)) < 0) { + zwarnnam(nam, "%s: %e", head, errno); err = 1; continue; } @@ -121,6 +133,8 @@ bin_mkdir(char *nam, char **args, char *ops, int func) } } else err |= domkdir(nam, *args, mode, 0); + + free(head); } return err; } |