]> git.ipfire.org Git - thirdparty/unbound.git/commitdiff
Changelog note for #341 and layout change.
authorW.C.A. Wijngaards <wouter@nlnetlabs.nl>
Tue, 10 Nov 2020 07:07:28 +0000 (08:07 +0100)
committerW.C.A. Wijngaards <wouter@nlnetlabs.nl>
Tue, 10 Nov 2020 07:07:28 +0000 (08:07 +0100)
- Fix #341: fixing a possible memory leak.

doc/Changelog
services/listen_dnsport.c

index 181aaad05f5f40697db760b042a99f85ab83d507..e8314747ecaa8595239738b624b824ae816d1ee3 100644 (file)
@@ -1,3 +1,6 @@
+10 November 2020: Wouter
+       - Fix #341: fixing a possible memory leak.
+
 27 October 2020: Wouter
        - In man page note that tls-cert-bundle is read before permission
          drop and chroot.
index 744f204ac17793ac3f79c1affeca54dcff1ce565..71c8eb1598e11b37c84e7c03ff4fb92381a4fd88 100644 (file)
@@ -1404,7 +1404,7 @@ static int
 resolve_ifa_name(struct ifaddrs *ifas, const char *search_ifa, char ***ip_addresses, int *ip_addresses_size)
 {
        struct ifaddrs *ifa;
-       void * tmpbuf;
+       void *tmpbuf;
        int last_ip_addresses_size = *ip_addresses_size;
 
        for(ifa = ifas; ifa != NULL; ifa = ifa->ifa_next) {