Skip to content

Commit 5551a1c

Browse files
committed
lint
1 parent 4c2bf2d commit 5551a1c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/native/http_request_utils.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ static int s_aws_input_stream_read(struct aws_input_stream *stream, struct aws_b
9797
size_t chunk_size = 1024;
9898
/* Newer updates allow part sizes up to 5GB. Since number of bytes required for a 5GB part is
9999
greater than INT_MAX, it would cause a bug where the java does not allocate memory and return a null buffer
100-
since Java natively does not support direct allocation of buffers of capacity > Integer.MAX_VALUE.
100+
since Java natively does not support direct allocation of buffers of capacity > Integer.MAX_VALUE.
101101
Since C handles recursively calling for more data, we read up to chunk size or out_remaining (whichever is lower)
102102
and return the C. */
103103
if (out_remaining <= chunk_size) {

0 commit comments

Comments
 (0)