From fa4a37c57be09291527a571dfdd1e2543689a6d7 Mon Sep 17 00:00:00 2001 From: Pranshu Srivastava Date: Sat, 25 Apr 2020 16:46:10 +0530 Subject: [PATCH] http2: comment on usage of `Object.create(null)` Refs: https://github.com/nodejs/node/issues/29829 PR-URL: https://github.com/nodejs/node/pull/33183 Reviewed-By: James M Snell Reviewed-By: Ruben Bridgewater Reviewed-By: Anna Henningsen Reviewed-By: Colin Ihrig --- lib/internal/http2/compat.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/internal/http2/compat.js b/lib/internal/http2/compat.js index 479510152c9522..9c49d52b5d37d7 100644 --- a/lib/internal/http2/compat.js +++ b/lib/internal/http2/compat.js @@ -287,6 +287,9 @@ class Http2ServerRequest extends Readable { closed: false, didRead: false, }; + // Headers in HTTP/1 are not initialized using Object.create(null) which, + // although preferable, would simply break too much code. Ergo header + // initialization using Object.create(null) in HTTP/2 is intentional. this[kHeaders] = headers; this[kRawHeaders] = rawHeaders; this[kTrailers] = {};