]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
Add CHANGES and release note for [GL #3400]
authorOndřej Surý <ondrej@isc.org>
Tue, 14 Jun 2022 07:23:32 +0000 (09:23 +0200)
committerOndřej Surý <ondrej@isc.org>
Tue, 14 Jun 2022 09:33:02 +0000 (11:33 +0200)
CHANGES
doc/notes/notes-current.rst

diff --git a/CHANGES b/CHANGES
index 761ecfb031d14b084de344a2b09fb11531e50c77..7c32fb18a7e58ca18cfd15b602bfd27658d96b24 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,8 @@
+5905.  [bug]           When the TCP connection would be closed/reset between
+                       the connect/accept and the read, the uv_read_start()
+                       return value would be unexpected and cause an assertion
+                       failure. [GL #3400]
+
 5904.  [func]          Changed dnssec-signzone -H default to 0 additional
                        NSEC3 iterations. [GL #3395]
 
index 3b77dcbc67bb6487a21963413e262d95ab6f8f30..95a2ff04fe30d4409ed9517d85126f0c0c476961 100644 (file)
@@ -46,3 +46,6 @@ Bug Fixes
 - It was possible for a catalog zone consumer to process a catalog zone member
   zone when there was a configured pre-existing forward-only forward zone with
   the same name. This has been fixed. :gl:`#2506`.
+
+- Fix the assertion failure caused by TCP connection closing between the
+  connect (or accept) and the read from the socket. :gl:`#3400`