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:
parent
48f57b422d
commit
4ebd5232e7
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue