Skip to content

Commit

Permalink
fix compilation error
Browse files Browse the repository at this point in the history
Signed-off-by: Asra Ali <asraa@google.com>
  • Loading branch information
asraa committed Oct 7, 2020
1 parent f99ca68 commit c89915d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/common/http/http2/hpack_fuzz_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -121,9 +121,9 @@ DEFINE_PROTO_FUZZER(const test::common::http::http2::HpackTestCase& input) {
}

// Create Deflater and Inflater
nghttp2_hd_deflater* deflater;
nghttp2_hd_deflater* deflater = nullptr;
ASSERT(nghttp2_hd_deflate_new(&deflater, kHeaderTableSize) == 0);
nghttp2_hd_inflater* inflater;
nghttp2_hd_inflater* inflater = nullptr;
ASSERT(nghttp2_hd_inflate_new(&inflater) == 0);

// Encode headers with nghttp2.
Expand Down

0 comments on commit c89915d

Please sign in to comment.