diff --git a/src/node_http2.cc b/src/node_http2.cc index 8946c71fc3e430..52566186cfe7e8 100644 --- a/src/node_http2.cc +++ b/src/node_http2.cc @@ -1875,8 +1875,9 @@ Http2Stream::Http2Stream(Http2Session* session, // Limit the number of header pairs max_header_pairs_ = session->GetMaxHeaderPairs(); - if (max_header_pairs_ == 0) - max_header_pairs_ = DEFAULT_MAX_HEADER_LIST_PAIRS; + if (max_header_pairs_ == 0) { + max_header_pairs_ = DEFAULT_MAX_HEADER_LIST_PAIRS; + } current_headers_.reserve(max_header_pairs_); // Limit the number of header octets