diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2012-06-02 14:56:24 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2012-06-02 14:56:24 +0000 |
commit | 2cf72776d89f96eb6184b084992894c86a62cd00 (patch) | |
tree | 7343b0088cfc5c8f42ca6dda6e73201e7c16c66c /package/uhttpd/src/uhttpd-cgi.c | |
parent | 2b4ef2eafa64251ea956dab9e4fe013865aced44 (diff) | |
download | upstream-2cf72776d89f96eb6184b084992894c86a62cd00.tar.gz upstream-2cf72776d89f96eb6184b084992894c86a62cd00.tar.bz2 upstream-2cf72776d89f96eb6184b084992894c86a62cd00.zip |
uhttpd: add explicit stdin eof notification for Lua and CGI childs
SVN-Revision: 32027
Diffstat (limited to 'package/uhttpd/src/uhttpd-cgi.c')
-rw-r--r-- | package/uhttpd/src/uhttpd-cgi.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/package/uhttpd/src/uhttpd-cgi.c b/package/uhttpd/src/uhttpd-cgi.c index 2f7ea7afaa..5e445ca372 100644 --- a/package/uhttpd/src/uhttpd-cgi.c +++ b/package/uhttpd/src/uhttpd-cgi.c @@ -181,6 +181,10 @@ static bool uh_cgi_socket_cb(struct client *cl) /* ... write to CGI process */ len = uh_raw_send(state->wfd, buf, len, cl->server->conf->script_timeout); + + /* explicit EOF notification for the child */ + if (state->content_length <= 0) + close(state->wfd); } /* try to read data from child */ |