diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 2007-05-06 22:23:52 -0400 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 2007-05-06 22:23:52 -0400 |
commit | 741e82fc69b69a3bfc14f33f33766a89cea4df42 (patch) | |
tree | 92830b34830f8ae07b251d96693c93392909d914 /src/GridText.c | |
parent | 9fa44396215d14644ecd5aa32c04327d4e6243a2 (diff) | |
download | lynx-snapshots-741e82fc69b69a3bfc14f33f33766a89cea4df42.tar.gz |
snapshot of project "lynx", label v2-8-7dev_4d
Diffstat (limited to 'src/GridText.c')
-rw-r--r-- | src/GridText.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/GridText.c b/src/GridText.c index fb455a71..4aa200f3 100644 --- a/src/GridText.c +++ b/src/GridText.c @@ -8035,7 +8035,7 @@ void print_crawl_to_fd(FILE *fp, char *thelink, * Add data. */ limit = TrimmedLength(line->data); - for (i = 0; limit; i++) { + for (i = 0; i < limit; i++) { int ch = UCH(line->data[i]); if (!IsSpecialAttrChar(ch)) { |