deal with header state in correct order so packet/buffer boundaries dont break

This commit is contained in:
Adam D. Ruppe 2021-11-29 09:24:43 -05:00
parent a7209664e7
commit 495e664ba3
1 changed files with 2 additions and 2 deletions

View File

@ -1950,13 +1950,13 @@ class HttpRequest {
case 5: // reading footers
//goto done; // FIXME
bodyReadingState.chunkedState = 0;
while(data[a] != 10) {
a++;
if(a == data.length)
return stillAlive; // in the footer state we're just discarding everything until we're done so this should be ok
}
bodyReadingState.chunkedState = 0;
data = data[a + 1 .. $];
if(bodyReadingState.isGzipped || bodyReadingState.isDeflated) {