We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ecd72bf commit 3343bb8Copy full SHA for 3343bb8
source/h2_connection.c
@@ -2518,8 +2518,8 @@ static int s_connection_get_received_goaway(
2518
uint32_t *out_last_stream_id) {
2519
2520
struct aws_h2_connection *connection = AWS_CONTAINER_OF(connection_base, struct aws_h2_connection, base);
2521
- uint32_t received_last_stream_id;
2522
- uint32_t received_http2_error;
+ uint32_t received_last_stream_id = 0;
+ uint32_t received_http2_error = 0;
2523
bool goaway_not_ready = false;
2524
uint32_t max_stream_id = AWS_H2_STREAM_ID_MAX;
2525
{ /* BEGIN CRITICAL SECTION */
0 commit comments