summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/node_http2.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/node_http2.cc b/src/node_http2.cc
index 8946c71fc3..52566186cf 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