From: Remi Gacogne Date: Mon, 14 Aug 2023 10:09:00 +0000 (+0200) Subject: auth: Fix coverity CID 1030024: Uninitialized scalar field X-Git-Tag: rec-5.0.0-alpha1~63^2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=32b50c94382eceb1f6425d771c68520328a4e90d;p=thirdparty%2Fpdns.git auth: Fix coverity CID 1030024: Uninitialized scalar field --- diff --git a/pdns/packethandler.hh b/pdns/packethandler.hh index 3bd0511fc3..be224dcca5 100644 --- a/pdns/packethandler.hh +++ b/pdns/packethandler.hh @@ -113,7 +113,7 @@ private: bool d_logDNSDetails; bool d_doDNAME; bool d_doExpandALIAS; - bool d_dnssec; + bool d_dnssec{false}; SOAData d_sd; std::unique_ptr d_pdl; std::unique_ptr d_update_policy_lua;