This commit is contained in:
Adam D. Ruppe 2012-08-24 17:36:57 -04:00
parent 199fe4aaec
commit cf07121832
1 changed files with 4 additions and 1 deletions

5
http.d
View File

@ -209,7 +209,10 @@ body {
return readln();
}
auto ret = buffer[0 .. idx + 2]; // + the \r\n
buffer = buffer[idx + 2 .. $];
if(idx + 2 < buffer.length)
buffer = buffer[idx + 2 .. $];
else
buffer = null;
return ret;
}