Loading crates/s3s/src/http/aws_chunked_stream.rs +2 −1 Original line number Diff line number Diff line Loading @@ -232,7 +232,7 @@ impl AwsChunkedStream { } }; let mut remaining_bytes = 'outer: loop { let mut remaining_bytes = 'outer: { if let Some(remaining_bytes) = push_data_bytes(prev_bytes) { break 'outer remaining_bytes; } Loading @@ -248,6 +248,7 @@ impl AwsChunkedStream { } } }; if remaining_bytes.starts_with(b"\r\n") { // fast path remaining_bytes.advance(2); Loading Loading
crates/s3s/src/http/aws_chunked_stream.rs +2 −1 Original line number Diff line number Diff line Loading @@ -232,7 +232,7 @@ impl AwsChunkedStream { } }; let mut remaining_bytes = 'outer: loop { let mut remaining_bytes = 'outer: { if let Some(remaining_bytes) = push_data_bytes(prev_bytes) { break 'outer remaining_bytes; } Loading @@ -248,6 +248,7 @@ impl AwsChunkedStream { } } }; if remaining_bytes.starts_with(b"\r\n") { // fast path remaining_bytes.advance(2); Loading