Actions
Bug #1970
closedmod_fastcgi.c x-send-file sets incorrect Content-Length on 2GB+ files
ASK QUESTIONS IN Forums:
Description
Running Debian Lenny and the stock lighttpd 1.4.19.
When transferring large files (>2GB) using x-send-file, the Content-Length header sends the incorrect file size that results in truncated files. In mod_fastcgi.c at around line 2558 you will see this:
buffer_copy_long(dcls->value, sce->st.st_size);
Changing this line to something like this fixes the issue:
char len_str[BUFSIZ];
sprintf(len_str,"%llu",sce->st.st_size);
buffer_copy_string(dcls->value, len_str);
Thanks for writing lighttpd!
Updated by icy over 15 years ago
- Target version changed from 1.4.19 to 1.4.23
Target version != affected version. That being said: it should probably be changed to buffer_copy_off_t().
Thanks for reporting.
Updated by stbuehler over 15 years ago
- Status changed from New to Fixed
- % Done changed from 0 to 100
Applied in changeset r2494.
Actions
Also available in: Atom