Skip to content
Closed
Changes from 1 commit
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
Next Next commit
http: add mising initialization
Add missing initialization reported by coverity scan.

Signed-off-by: Michael Dawson <mdawson@devrus.com>
  • Loading branch information
mhdawson committed Oct 21, 2021
commit bb77126dcc547f2246c19698946ec456b15691fe
1 change: 1 addition & 0 deletions src/node_http_common-inl.h
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,7 @@ template <typename T>
NgHeader<T>::NgHeader(NgHeader<T>&& other) noexcept
: name_(std::move(other.name_)),
value_(std::move(other.value_)),
env_(std::move(other.env_)),
token_(other.token_),
flags_(other.flags_) {
other.token_ = -1;
Expand Down