diff --git a/src/body.rs b/src/body.rs index ac1acfc7..61e25422 100644 --- a/src/body.rs +++ b/src/body.rs @@ -176,7 +176,8 @@ impl Body { /// # Ok(()) }) } /// ``` pub async fn into_bytes(mut self) -> crate::Result> { - let mut buf = Vec::with_capacity(1024); + let len = usize::try_from(self.len().unwrap_or(0)).status(StatusCode::PayloadTooLarge)?; + let mut buf = Vec::with_capacity(len); self.read_to_end(&mut buf) .await .status(StatusCode::UnprocessableEntity)?; @@ -280,9 +281,8 @@ impl Body { /// # Ok(()) }) } /// ``` #[cfg(feature = "serde")] - pub async fn into_json(mut self) -> crate::Result { - let mut buf = Vec::with_capacity(1024); - self.read_to_end(&mut buf).await?; + pub async fn into_json(self) -> crate::Result { + let buf = self.into_bytes().await?; serde_json::from_slice(&buf).status(StatusCode::UnprocessableEntity) }