diff options
Diffstat (limited to 'coreutils')
-rw-r--r-- | coreutils/head.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/coreutils/head.c b/coreutils/head.c index 23adce79f..a9d024e62 100644 --- a/coreutils/head.c +++ b/coreutils/head.c @@ -54,7 +54,7 @@ head_main(int argc, char **argv) int len = 10; /* 1st option is potentially special */ - if ((argv[1][0] == '-') && isDecimal(argv[1][1])) { + if ((argc > 1) && (argv[1][0] == '-') && isDecimal(argv[1][1])) { int tmplen = atoi(&argv[1][1]); if (tmplen) { len = tmplen; } i = 2; @@ -66,6 +66,7 @@ head_main(int argc, char **argv) opt = argv[i][1]; switch (opt) { case '-': + break; case 'h': usage(head_usage); default: @@ -103,4 +104,4 @@ head_main(int argc, char **argv) exit(0); } -/* $Id: head.c,v 1.2 1999/12/10 08:29:20 andersen Exp $ */ +/* $Id: head.c,v 1.3 1999/12/15 19:29:09 beppu Exp $ */ |