From: Pavel Roskin Date: Wed, 14 Jun 2000 17:39:41 +0000 (-0000) Subject: Fixed "rm foo" that had been broken while implementing "rm -- foo" X-Git-Tag: android-x86-2.2~10013 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=e97da4007913bd29d8a18d038de29d9d4549163d;p=android-x86%2Fexternal-busybox.git Fixed "rm foo" that had been broken while implementing "rm -- foo" --- diff --git a/Changelog b/Changelog index a55f7f386..bb3cc4aa3 100644 --- a/Changelog +++ b/Changelog @@ -61,7 +61,7 @@ * Fixed segfault caused by "rm -f" * Fixed segfault caused by "ln -s -s" and similar abuses. * Fixed segfault caused by "cp -a -a" and similar abuses. - * Implemented "rm -- " + * Implemented "rm -- ". Implementation fixed by Pavel Roskin. * "which" rewritten to use stat(). Fixes to improve its compatability with traditional implementations -- Pavel Roskin. * "mount" now reports errors from nfsmount() and assumes NFS mount diff --git a/coreutils/rm.c b/coreutils/rm.c index 5901c5da9..b1cda3aed 100644 --- a/coreutils/rm.c +++ b/coreutils/rm.c @@ -68,14 +68,12 @@ extern int rm_main(int argc, char **argv) int stopIt=FALSE; struct stat statbuf; - if (argc < 2) { - usage(rm_usage); - } + argc--; argv++; /* Parse any options */ - while (--argc >= 0 && *argv && **argv && stopIt==FALSE) { - while (**argv == '-') { + while (argc > 0 && stopIt == FALSE) { + if (**argv == '-') { while (*++(*argv)) switch (**argv) { case 'R': @@ -91,8 +89,15 @@ extern int rm_main(int argc, char **argv) default: usage(rm_usage); } + argc--; + argv++; } - argv++; + else + break; + } + + if (argc < 1 && forceFlag == FALSE) { + usage(rm_usage); } while (argc-- > 0) { diff --git a/rm.c b/rm.c index 5901c5da9..b1cda3aed 100644 --- a/rm.c +++ b/rm.c @@ -68,14 +68,12 @@ extern int rm_main(int argc, char **argv) int stopIt=FALSE; struct stat statbuf; - if (argc < 2) { - usage(rm_usage); - } + argc--; argv++; /* Parse any options */ - while (--argc >= 0 && *argv && **argv && stopIt==FALSE) { - while (**argv == '-') { + while (argc > 0 && stopIt == FALSE) { + if (**argv == '-') { while (*++(*argv)) switch (**argv) { case 'R': @@ -91,8 +89,15 @@ extern int rm_main(int argc, char **argv) default: usage(rm_usage); } + argc--; + argv++; } - argv++; + else + break; + } + + if (argc < 1 && forceFlag == FALSE) { + usage(rm_usage); } while (argc-- > 0) {