mirror of https://github.com/adamdruppe/arsd.git
idk
This commit is contained in:
parent
199fe4aaec
commit
cf07121832
5
http.d
5
http.d
|
@ -209,7 +209,10 @@ body {
|
||||||
return readln();
|
return readln();
|
||||||
}
|
}
|
||||||
auto ret = buffer[0 .. idx + 2]; // + the \r\n
|
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;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue