Re: [Dnsmasq-discuss] [PATCH] Fix potential memory leak

2024-03-17 Thread Brian Haley
Hi, On 3/17/24 9:38 AM, Geert Stappers wrote: From: Brian Haley When a new IPv6 address is being added to a dhcp_config struct, if there is anything invalid regarding the prefix it looks like there is a potential memory leak. ret_err_free() should be used to free it. Signed-off-by: Brian

Re: [Dnsmasq-discuss] [PATCH v1] Fix dependency in make install target

2024-03-17 Thread Geert Stappers
Hello Olaf, (Mailinglist in the Cc:) On Tue, Oct 17, 2023 at 10:59:29PM +0200, Geert Stappers wrote: > On Mon, Oct 16, 2023 at 12:02:53PM +0200, Olaf Hering wrote: > > The make target 'install-common' expects results from the target 'all'. > > A 'make -j install' may fail because both targets are

[Dnsmasq-discuss] [PATCH] Quieten DHCPv6 log when in static mode.

2024-03-17 Thread Geert Stappers
From: Ian Dall When a DHCP range has a mode of "static" then the pool of dynamically allocated address is configured to be of zero size. DHCPv6 will still respond with statically defined addresses. In these cirumstances, not allocating an address is expected behaviour and not an error, so allow

[Dnsmasq-discuss] [PATCH] Fix potential memory leak

2024-03-17 Thread Geert Stappers
From: Brian Haley When a new IPv6 address is being added to a dhcp_config struct, if there is anything invalid regarding the prefix it looks like there is a potential memory leak. ret_err_free() should be used to free it. Signed-off-by: Brian Haley --- src/option.c | 2 +- 1 file changed, 1