From: Willem Toorop Date: Fri, 22 Jul 2011 13:48:57 +0000 (+0000) Subject: And free the new struct too! X-Git-Tag: release-1.6.11rc1~44 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d1fc8f11da9f033aed0cc8103915a057ef44a1bd;p=thirdparty%2Fldns.git And free the new struct too! --- diff --git a/Changelog b/Changelog index 15d490f9..c337b763 100644 --- a/Changelog +++ b/Changelog @@ -1,7 +1,7 @@ 1.6.11 * bugfix #394: Fix socket leak on errors * bugfix #392: Apex only and percentage checks for ldns-verify-zone - * bugfix #398: Allow nsec rrsig before the nsec3 in ldns-verify-zone + * bugfix #398: Allow NSEC RRSIGs before the NSEC3 in ldns-verify-zone 1.6.10 2011-05-31 * New example tool added: ldns-gen-zone. diff --git a/examples/ldns-verify-zone.c b/examples/ldns-verify-zone.c index 5686078f..6e81c3ab 100644 --- a/examples/ldns-verify-zone.c +++ b/examples/ldns-verify-zone.c @@ -140,6 +140,7 @@ create_dnssec_zone(ldns_zone *orig_zone) } } + ldns_rr_list_free(failed_nsec3_rrsigs); ldns_rr_list_free(failed_nsec3s); return dnssec_zone; }