Skip to content

Commit 92b9c5b

Browse files
committed
unit test for chunking stream
1 parent 2788f2e commit 92b9c5b

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/aws-cpp-sdk-core/include/smithy/client/features/ChunkingInterceptor.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,7 @@ class AwsChunkedStreamWrapper {
4646
if (gptr() < egptr()) {
4747
return traits_type::to_int_type(*gptr());
4848
}
49-
50-
// BufferedRead logic inlined per Sam's guidance
49+
5150
if (m_stream->good()) {
5251
m_stream->read(m_data.GetUnderlyingData(), m_bufferSize);
5352
size_t bytesRead = static_cast<size_t>(m_stream->gcount());

0 commit comments

Comments
 (0)