From 52b18fc6f57c387c01876d23f4f77990a289c037 Mon Sep 17 00:00:00 2001 From: "W.C.A. Wijngaards" Date: Fri, 24 Jul 2026 12:25:34 +0200 Subject: [PATCH] Changelog entry for #1480 - Merge #1480 from petrvaganoff: authzone: fix memory leak in xfer_set_masters() error path. --- doc/Changelog | 2 ++ testdata/10-unbound-anchor.tdir/10-unbound-anchor.conf | 1 + testdata/10-unbound-anchor.tdir/10-unbound-anchor.test | 4 +++- 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/doc/Changelog b/doc/Changelog index da46218a7..6b996cba4 100644 --- a/doc/Changelog +++ b/doc/Changelog @@ -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. + - 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. diff --git a/testdata/10-unbound-anchor.tdir/10-unbound-anchor.conf b/testdata/10-unbound-anchor.tdir/10-unbound-anchor.conf index bb125c0d5..9ce1fa223 100644 --- a/testdata/10-unbound-anchor.tdir/10-unbound-anchor.conf +++ b/testdata/10-unbound-anchor.tdir/10-unbound-anchor.conf @@ -2,6 +2,7 @@ server: do-not-query-localhost: no fake-sha1: yes + verbosity: 8 forward-zone: name: "." forward-addr: "127.0.0.1@@TOPORT@" diff --git a/testdata/10-unbound-anchor.tdir/10-unbound-anchor.test b/testdata/10-unbound-anchor.tdir/10-unbound-anchor.test index 46cea626c..d779fca34 100644 --- a/testdata/10-unbound-anchor.tdir/10-unbound-anchor.test +++ b/testdata/10-unbound-anchor.tdir/10-unbound-anchor.test @@ -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 -$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 +cat root.key check_works # save for test 5 cp root.key root.key.probed -- 2.47.3