BIND 10 master, updated. b39ac098a37803588a3a801d91b85170ddaa7137 [master] made sure all member variables are initialized in the Resolver constructor. this fixes a regression report from cppcheck.

BIND 10 source code commits bind10-changes at lists.isc.org
Wed May 25 19:03:30 UTC 2011


The branch, master has been updated
       via  b39ac098a37803588a3a801d91b85170ddaa7137 (commit)
      from  e57fcdbaee0fe7562168a363c1f3273a92fa595a (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit b39ac098a37803588a3a801d91b85170ddaa7137
Author: JINMEI Tatuya <jinmei at isc.org>
Date:   Wed May 25 12:02:41 2011 -0700

    [master] made sure all member variables are initialized in the Resolver
    constructor.  this fixes a regression report from cppcheck.

-----------------------------------------------------------------------

Summary of changes:
 src/bin/resolver/resolver.cc |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

-----------------------------------------------------------------------
diff --git a/src/bin/resolver/resolver.cc b/src/bin/resolver/resolver.cc
index 6028bac..934fbdf 100644
--- a/src/bin/resolver/resolver.cc
+++ b/src/bin/resolver/resolver.cc
@@ -324,9 +324,12 @@ private:
 
 Resolver::Resolver() :
     impl_(new ResolverImpl()),
+    dnss_(NULL),
     checkin_(new ConfigCheck(this)),
     dns_lookup_(new MessageLookup(this)),
     dns_answer_(new MessageAnswer),
+    nsas_(NULL),
+    cache_(NULL),
     configured_(false)
 {}
 




More information about the bind10-changes mailing list