]> git.ipfire.org Git - thirdparty/unbound.git/commitdiff
Changelog entry for #1480 master
authorW.C.A. Wijngaards <wouter@nlnetlabs.nl>
Fri, 24 Jul 2026 10:25:34 +0000 (12:25 +0200)
committerW.C.A. Wijngaards <wouter@nlnetlabs.nl>
Fri, 24 Jul 2026 10:25:34 +0000 (12:25 +0200)
- Merge #1480 from petrvaganoff: authzone: fix memory leak in
  xfer_set_masters() error path.

doc/Changelog
testdata/10-unbound-anchor.tdir/10-unbound-anchor.conf
testdata/10-unbound-anchor.tdir/10-unbound-anchor.test

index da46218a7f8ccb5c19f0196f58d8d50a9c348bef..6b996cba46a1317cdae979b50fcf1f404aa8bcca 100644 (file)
@@ -17,6 +17,8 @@
        - Fix to lock shared_ports structure during initialisation.
        - Fix to lock anchor structure when file is set for it in
          parse of the header.
        - Fix to lock shared_ports structure during initialisation.
        - Fix to lock anchor structure when file is set for it in
          parse of the header.
+       - Merge #1480 from petrvaganoff: authzone: fix memory leak in
+         xfer_set_masters() error path.
 
 23 July 2026: Wouter
        - Updated credits for Xuanchao Xie in 22 july changelog.
 
 23 July 2026: Wouter
        - Updated credits for Xuanchao Xie in 22 july changelog.
index bb125c0d5c55b0b869418613b6d029b404c72dd3..9ce1fa223f5627f1801ef430f6d1341754cf06ce 100644 (file)
@@ -2,6 +2,7 @@
 server:
        do-not-query-localhost: no
        fake-sha1: yes
 server:
        do-not-query-localhost: no
        fake-sha1: yes
+       verbosity: 8
 forward-zone:
        name: "."
        forward-addr: "127.0.0.1@@TOPORT@"
 forward-zone:
        name: "."
        forward-addr: "127.0.0.1@@TOPORT@"
index 46cea626cb002087ca8657a0ae67a17c2bcccafb..d779fca34f01d490bebec6e20e81346e9af25401 100644 (file)
@@ -35,11 +35,13 @@ function check_insecure() {
 # test with good start key, and must do 5011 (no URL possible)
 echo "*** TEST 1 ***"
 echo $DS > root.key
 # test with good start key, and must do 5011 (no URL possible)
 echo "*** TEST 1 ***"
 echo $DS > root.key
-$PRE/unbound-anchor -x "notexist.xml" -s "notexist.p7s" $OPTS
+cat root.key
+$PRE/unbound-anchor -x "notexist.xml" -s "notexist.p7s" $OPTS -vvvv
 if test $? != 0; then
        echo "Exitcode not OK"
        exit 1
 fi
 if test $? != 0; then
        echo "Exitcode not OK"
        exit 1
 fi
+cat root.key
 check_works
 # save for test 5
 cp root.key root.key.probed
 check_works
 # save for test 5
 cp root.key root.key.probed