]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
patch security flaw [rt24777], and prepare release of 9.7.3-P2
authorEvan Hunt <each@isc.org>
Wed, 8 Jun 2011 22:07:11 +0000 (22:07 +0000)
committerEvan Hunt <each@isc.org>
Wed, 8 Jun 2011 22:07:11 +0000 (22:07 +0000)
CHANGES
lib/dns/message.c
version

diff --git a/CHANGES b/CHANGES
index 259e5084b16a4e70bc305aaaa65abbf73017c144..e4d20884d5ea9503db95503b458a911e71912cc6 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,9 @@
+       --- 9.7.3-P2 released ---
+
+3123.  [security]      Change #2912 exposed a latent flaw in
+                       dns_rdataset_totext() that could cause named to
+                       crash with an assertion failure. [RT #24777]
+
        --- 9.7.3-P1 released ---
 
 3121.   [security]      An authoritative name server sending a negative
index 5e06ffb1017383ba677e4948696c8df441ee00bc..073ccfcd81a9e9326c09aa2fc95789dca9718f48 100644 (file)
@@ -15,7 +15,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: message.c,v 1.249.10.4 2010/06/03 05:27:59 marka Exp $ */
+/* $Id: message.c,v 1.249.10.4.36.1 2011/06/08 22:07:11 each Exp $ */
 
 /*! \file */
 
@@ -2528,7 +2528,7 @@ dns_message_reply(dns_message_t *msg, isc_boolean_t want_question_section) {
            msg->opcode != dns_opcode_notify)
                want_question_section = ISC_FALSE;
        if (msg->opcode == dns_opcode_update)
-               first_section = DNS_SECTION_ADDITIONAL;
+               first_section = DNS_SECTION_PREREQUISITE;
        else if (want_question_section) {
                if (!msg->question_ok)
                        return (DNS_R_FORMERR);
diff --git a/version b/version
index fd92c95009fe9f0657a4a4fa2a53ae052117432f..489fdeb3aea3cdd868e8ff0425df0e7ad2616b1b 100644 (file)
--- a/version
+++ b/version
@@ -1,4 +1,4 @@
-# $Id: version,v 1.51.2.11.12.1 2011/05/27 00:43:04 each Exp $
+# $Id: version,v 1.51.2.11.12.2 2011/06/08 22:07:10 each Exp $
 # 
 # This file must follow /bin/sh rules.  It is imported directly via
 # configure.
@@ -7,4 +7,4 @@ MAJORVER=9
 MINORVER=7
 PATCHVER=3
 RELEASETYPE=-P
-RELEASEVER=1
+RELEASEVER=2