From 9adcf73152e1cb4d537d3ff713abe9d1c51171dd Mon Sep 17 00:00:00 2001 From: Glenn L McGrath Date: Mon, 8 Dec 2003 20:21:53 +0000 Subject: [PATCH] Stop sending data to the client after the first failure. Patch by Joe.C --- networking/httpd.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/networking/httpd.c b/networking/httpd.c index ba65e1361..1a3f5f94f 100644 --- a/networking/httpd.c +++ b/networking/httpd.c @@ -1337,7 +1337,8 @@ static int sendFile(const char *url) sendHeaders(HTTP_OK); while ((count = bb_full_read(f, buf, MAX_MEMORY_BUFF)) > 0) { - bb_full_write(a_c_w, buf, count); + if (bb_full_write(a_c_w, buf, count) != count) + break; } close(f); } else {