nghttpx: Fix uninitialized dnf fields
This commit is contained in:
parent
9bda8e266e
commit
fbb228050a
|
@ -541,6 +541,7 @@ struct DownstreamAddrGroupConfig {
|
||||||
: pattern(pattern),
|
: pattern(pattern),
|
||||||
affinity{SessionAffinity::NONE},
|
affinity{SessionAffinity::NONE},
|
||||||
redirect_if_not_tls(false),
|
redirect_if_not_tls(false),
|
||||||
|
dnf{false},
|
||||||
timeout{} {}
|
timeout{} {}
|
||||||
|
|
||||||
StringRef pattern;
|
StringRef pattern;
|
||||||
|
|
|
@ -198,6 +198,7 @@ struct SharedDownstreamAddr {
|
||||||
: balloc(1024, 1024),
|
: balloc(1024, 1024),
|
||||||
affinity{SessionAffinity::NONE},
|
affinity{SessionAffinity::NONE},
|
||||||
redirect_if_not_tls{false},
|
redirect_if_not_tls{false},
|
||||||
|
dnf{false},
|
||||||
timeout{} {}
|
timeout{} {}
|
||||||
|
|
||||||
SharedDownstreamAddr(const SharedDownstreamAddr &) = delete;
|
SharedDownstreamAddr(const SharedDownstreamAddr &) = delete;
|
||||||
|
|
Loading…
Reference in New Issue