Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion source/hpack.c
Original file line number Diff line number Diff line change
Expand Up @@ -1371,7 +1371,7 @@ static int s_encode_header_field(
/* Else, Literal header field... */

/* determine exactly which type of literal header-field to encode. */
enum aws_hpack_entry_type literal_entry_type;
enum aws_hpack_entry_type literal_entry_type = AWS_HPACK_ENTRY_TYPE_COUNT;
if (s_convert_http_compression_to_literal_entry_type(header->compression, &literal_entry_type)) {
goto error;
}
Expand Down