]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
auth: Fix coverity CID 1030024: Uninitialized scalar field
authorRemi Gacogne <remi.gacogne@powerdns.com>
Mon, 14 Aug 2023 10:09:00 +0000 (12:09 +0200)
committerRemi Gacogne <remi.gacogne@powerdns.com>
Mon, 14 Aug 2023 10:09:00 +0000 (12:09 +0200)
pdns/packethandler.hh

index 3bd0511fc317400e6c13db7e9fd6c7ce8e8dab39..be224dcca5e739e75b6deca1f7b3be03ac6db9f5 100644 (file)
@@ -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<AuthLua4> d_pdl;
   std::unique_ptr<AuthLua4> d_update_policy_lua;