BIND 10 master, updated. 26808da540dbf7b5ac1127303ea4562309949d05 [master] Corrected invalid read complaint in D2ClientMgr

BIND 10 source code commits bind10-changes at lists.isc.org
Tue Feb 11 19:11:08 UTC 2014


The branch, master has been updated
       via  26808da540dbf7b5ac1127303ea4562309949d05 (commit)
      from  0053becdd7452871439bcc19095ed9b50f7e01bc (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 26808da540dbf7b5ac1127303ea4562309949d05
Author: Thomas Markwalder <tmark at isc.org>
Date:   Tue Feb 11 14:08:21 2014 -0500

    [master] Corrected invalid read complaint in D2ClientMgr
    
    valgrind reported an invalid D2ClientMgr is destroyed while in send mode
    Added call to stopSender to D2ClientMgr destructor.

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

Summary of changes:
 src/lib/dhcpsrv/d2_client.cc |    3 +++
 1 file changed, 3 insertions(+)

-----------------------------------------------------------------------
diff --git a/src/lib/dhcpsrv/d2_client.cc b/src/lib/dhcpsrv/d2_client.cc
index f38d332..c5a7bcb 100644
--- a/src/lib/dhcpsrv/d2_client.cc
+++ b/src/lib/dhcpsrv/d2_client.cc
@@ -148,6 +148,9 @@ D2ClientMgr::D2ClientMgr() : d2_client_config_(new D2ClientConfig()),
 }
 
 D2ClientMgr::~D2ClientMgr(){
+    if (name_change_sender_) {
+        stopSender();
+    }
 }
 
 void



More information about the bind10-changes mailing list