diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 1999-12-15 11:25:06 -0500 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 1999-12-15 11:25:06 -0500 |
commit | f61041c10496785b2833ee4f76ef3edc9792b1bd (patch) | |
tree | e9c127318bebeb1a4944bf636fca5bd188a90771 /WWW/Library/Implementation/HTFile.c | |
parent | 4525eb4b32fdf2124e246285af59a1e14ecbf551 (diff) | |
download | lynx-snapshots-f61041c10496785b2833ee4f76ef3edc9792b1bd.tar.gz |
snapshot of project "lynx", label v2-8-3dev_17
Diffstat (limited to 'WWW/Library/Implementation/HTFile.c')
-rw-r--r-- | WWW/Library/Implementation/HTFile.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/WWW/Library/Implementation/HTFile.c b/WWW/Library/Implementation/HTFile.c index b5ad32af..4ecf8820 100644 --- a/WWW/Library/Implementation/HTFile.c +++ b/WWW/Library/Implementation/HTFile.c @@ -2510,7 +2510,14 @@ PUBLIC int HTLoadFile ARGS4( FREE(nodename); return status; /* document loaded, maybe partial */ - } /* end if localname is a directory */ + } /* end if localname is a directory */ + + if (S_ISREG(dir_info.st_mode)) { +#ifdef INT_MAX + if (dir_info.st_size <= INT_MAX) +#endif + anchor->content_length = dir_info.st_size; + } } /* end if file stat worked */ |