diff options
Diffstat (limited to 'networking/httpd.c')
-rw-r--r-- | networking/httpd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/httpd.c b/networking/httpd.c index f233cb0ba..fb6ecbf70 100644 --- a/networking/httpd.c +++ b/networking/httpd.c @@ -1594,7 +1594,7 @@ static NOINLINE void send_file_and_exit(const char *url, int what) } range_len = MAXINT(off_t); if (range_start >= 0) { - if (!range_end) { + if (!range_end || range_end > file_size - 1) { range_end = file_size - 1; } if (range_end < range_start |