1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2025-04-06 18:19:37 +00:00

Add in an eof guard for extra safety

This commit is contained in:
jefshe 2019-08-20 11:08:32 +10:00
parent 48f57b422d
commit 4ebd5232e7

View file

@ -781,7 +781,7 @@ impl PayloadBuffer {
/// Read bytes until new line delimiter or eof
pub fn readline_or_eof(&mut self) -> Result<Option<Bytes>, MultipartError> {
match self.readline() {
Err(MultipartError::Incomplete) => Ok(Some(self.buf.take().freeze())),
Err(MultipartError::Incomplete) if self.eof => Ok(Some(self.buf.take().freeze())),
line => line
}
}