Skip to content

Commit

Permalink
Coverity 1591086 Uninitialized scalar field
Browse files Browse the repository at this point in the history
  • Loading branch information
omoerbeek committed Feb 14, 2025
1 parent 9132094 commit 9aef5e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pdns/dnsname.hh
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ struct SuffixMatchTree
std::string d_name;
mutable std::set<SuffixMatchTree, std::less<>> children;
mutable bool endNode;
mutable T d_value;
mutable T d_value{};

/* this structure is used to do a lookup without allocating and
copying a string, using C++14's heterogeneous lookups in ordered
Expand Down

0 comments on commit 9aef5e2

Please sign in to comment.