diff options
author | Roland Reichwein <mail@reichwein.it> | 2022-01-06 19:06:37 +0100 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2022-01-06 19:06:37 +0100 |
commit | 491e246f65ddb4ec7d0e810f47b7db537be4c382 (patch) | |
tree | ed2922e7f5b31b776e25f0c7aa1c360b3b054f6a /plugins/cgi | |
parent | 501d04c22e76152da8ff009d3a9b017fc75e8dcc (diff) |
Bugfix for CGI: Process readv1.16
Diffstat (limited to 'plugins/cgi')
-rw-r--r-- | plugins/cgi/cgi.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/plugins/cgi/cgi.cpp b/plugins/cgi/cgi.cpp index 131855e..b2af9fa 100644 --- a/plugins/cgi/cgi.cpp +++ b/plugins/cgi/cgi.cpp @@ -157,7 +157,6 @@ namespace { std::string output; std::string line; - // TODO: C++20 coroutine coro_t::push_type processLine( [&](coro_t::pull_type& in){ std::string line; // read header lines @@ -183,7 +182,7 @@ namespace { throw std::runtime_error("Input missing on processing CGI body"); }); - while (child.running() && std::getline(is_out, line)) { + while (std::getline(is_out, line) && !is_out.eof()) { processLine(line); } |