]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
2149. [bug] isc_mem_checkdestroyed() failed to abort on
authorMark Andrews <marka@isc.org>
Mon, 26 Feb 2007 22:57:03 +0000 (22:57 +0000)
committerMark Andrews <marka@isc.org>
Mon, 26 Feb 2007 22:57:03 +0000 (22:57 +0000)
                        if there were still active memory contexts.
                        [RT #16672]

CHANGES
lib/isc/mem.c

diff --git a/CHANGES b/CHANGES
index 98c461365d1e90fca31dacde9ada17bd2ef97a5b..c5ca240593b4f1cefb22f75f23d032e2d6640b03 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,7 @@
+2149.  [bug]           isc_mem_checkdestroyed() failed to abort on
+                       if there were still active memory contexts.
+                       [RT #16672]
+
 2148.  [func]          Add positive logging for rndc commands. [RT #14623]
 
 2147.  [bug]           libbind: remove potential buffer overflow from
index e29bab8f951ed2f051c25e0588fff2d4f2383553..fcc25fffc5de152537433295f21e864b9d71b1a8 100644 (file)
@@ -15,7 +15,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: mem.c,v 1.131 2007/02/14 02:39:44 marka Exp $ */
+/* $Id: mem.c,v 1.132 2007/02/26 22:57:03 marka Exp $ */
 
 /*! \file */
 
@@ -1948,7 +1948,7 @@ isc_mem_checkdestroyed(FILE *file) {
                }
                fflush(file);
 #endif
-               INSIST(1);
+               INSIST(0);
        }
        UNLOCK(&lock);
 }