bug in long post request handling w/ embedded httpd

This commit is contained in:
Adam D. Ruppe 2016-12-15 11:52:15 -05:00
parent 2c8b77da5d
commit 918f4ceab8
1 changed files with 3 additions and 0 deletions

3
cgi.d
View File

@ -1243,6 +1243,7 @@ class Cgi {
throw new Exception("wtf is up with such a gigantic form submission????");
pps.buffer ~= chunk;
// simple handling, but it works... until someone bombs us with gigabytes of crap at least...
if(pps.buffer.length == pps.expectedLength)
pps._post = decodeVariables(cast(string) pps.buffer);
@ -3639,6 +3640,8 @@ ByChunkRange byChunk(BufferedInputRange ir, size_t atMost) {
}
override void popFront() {
ir.consume(f.length);
atMost -= f.length;
auto a = ir.front();
if(a.length <= atMost) {