BIND 10 master, updated. cabbe83773e3b4bc88f80f81cb4d370b0ef7a2f6 [master] added missing initialization
BIND 10 source code commits
bind10-changes at lists.isc.org
Wed Jan 23 17:29:48 UTC 2013
The branch, master has been updated
via cabbe83773e3b4bc88f80f81cb4d370b0ef7a2f6 (commit)
from 701cf211bb322f46cd0188b8adc2f8e9ad8ac8e6 (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 cabbe83773e3b4bc88f80f81cb4d370b0ef7a2f6
Author: JINMEI Tatuya <jinmei at isc.org>
Date: Wed Jan 23 09:28:41 2013 -0800
[master] added missing initialization
the original version didn't have a problem because the constructor
should never be used in python wrappers, but I do this to silence cppcheck.
the change is small anyway.
-----------------------------------------------------------------------
Summary of changes:
src/lib/python/isc/datasrc/updater_python.cc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
-----------------------------------------------------------------------
diff --git a/src/lib/python/isc/datasrc/updater_python.cc b/src/lib/python/isc/datasrc/updater_python.cc
index cb727c3..e61db75 100644
--- a/src/lib/python/isc/datasrc/updater_python.cc
+++ b/src/lib/python/isc/datasrc/updater_python.cc
@@ -203,7 +203,7 @@ namespace {
class s_UpdaterRRsetCollection : public s_RRsetCollection {
public:
- s_UpdaterRRsetCollection() : s_RRsetCollection() {}
+ s_UpdaterRRsetCollection() : s_RRsetCollection(), base_obj_(NULL) {}
PyObject* base_obj_;
};
More information about the bind10-changes
mailing list