Browse Source

Merge branch 'master' of git+ssh://git.bind10.isc.org/var/bind10/git/bind10

Michal 'vorner' Vaner 12 years ago
parent
commit
e93ef80d1c
1 changed files with 5 additions and 1 deletions
  1. 5 1
      src/lib/python/isc/datasrc/zonetable_accessor_python.cc

+ 5 - 1
src/lib/python/isc/datasrc/zonetable_accessor_python.cc

@@ -34,7 +34,11 @@ namespace {
 // The s_* Class simply covers one instantiation of the object
 class s_ZoneTableAccessor : public PyObject {
 public:
-    s_ZoneTableAccessor() : cppobj(ConstZoneTableAccessorPtr()) {};
+    s_ZoneTableAccessor() :
+        cppobj(ConstZoneTableAccessorPtr()),
+        base_obj(NULL)
+    {}
+
     ConstZoneTableAccessorPtr cppobj;
     // This is a reference to a base object; if the object of this class
     // depends on another object to be in scope during its lifetime,