diff options
| author | Kris Kennaway <kris@FreeBSD.org> | 2000-07-31 10:14:06 +0000 |
|---|---|---|
| committer | Kris Kennaway <kris@FreeBSD.org> | 2000-07-31 10:14:06 +0000 |
| commit | 3890f2357a05f180d3179de76dfeb0a5dbdcd7ab (patch) | |
| tree | e3b1d3c7077baa1f9639022d5256a20526d0dd2a /usr.bin/ul | |
| parent | 90c2506c08ec33facd9396754c476798a777dcc9 (diff) | |
Notes
Diffstat (limited to 'usr.bin/ul')
| -rw-r--r-- | usr.bin/ul/ul.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/ul/ul.c b/usr.bin/ul/ul.c index cfdd55245690..597add1add10 100644 --- a/usr.bin/ul/ul.c +++ b/usr.bin/ul/ul.c @@ -170,7 +170,7 @@ filter(f) { register c; - while ((c = getc(f)) != EOF) switch(c) { + while ((c = getc(f)) != EOF && col < MAXBUF) switch(c) { case '\b': if (col > 0) |
