diff options
author | Eric Andersen <andersen@codepoet.org> | 2004-02-04 11:10:28 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2004-02-04 11:10:28 +0000 |
commit | ef43749e83592288c9e8048689edaf72498784b8 (patch) | |
tree | a221bb9e69de90de685659707e207e7a30eae792 | |
parent | c71c18957d9f990d7373ab39d84e9156dcc7391d (diff) | |
download | busybox-w32-ef43749e83592288c9e8048689edaf72498784b8.tar.gz busybox-w32-ef43749e83592288c9e8048689edaf72498784b8.tar.bz2 busybox-w32-ef43749e83592288c9e8048689edaf72498784b8.zip |
Joe.C writes:
Hi,
When httpd connection is closed, bosybox httpd will
not stop reading from CGI program. This patch fix this
problem. It check the return value of bb_full_write and
stop reading from CGI if the connection is closed.
Please apply this patch.
Joe.C
-rw-r--r-- | networking/httpd.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/networking/httpd.c b/networking/httpd.c index a02b63a38..9b36101d7 100644 --- a/networking/httpd.c +++ b/networking/httpd.c | |||
@@ -1271,7 +1271,9 @@ static int sendCgi(const char *url, | |||
1271 | } | 1271 | } |
1272 | firstLine = 0; | 1272 | firstLine = 0; |
1273 | } | 1273 | } |
1274 | bb_full_write(s, rbuf, count); | 1274 | if (bb_full_write(s, rbuf, count) != count) |
1275 | break; | ||
1276 | |||
1275 | #ifdef DEBUG | 1277 | #ifdef DEBUG |
1276 | if (config->debugHttpd) | 1278 | if (config->debugHttpd) |
1277 | fprintf(stderr, "cgi read %d bytes\n", count); | 1279 | fprintf(stderr, "cgi read %d bytes\n", count); |