mirror of
https://github.com/NLnetLabs/unbound.git
synced 2025-12-20 23:00:56 -05:00
Changelog note for #341 and layout change.
- Fix #341: fixing a possible memory leak.
This commit is contained in:
parent
140ab1f701
commit
3926035f30
2 changed files with 4 additions and 1 deletions
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue