From: Ronan Pigott Date: Tue, 31 Oct 2023 00:24:42 +0000 (-0700) Subject: network: free dhcp6_hostname X-Git-Tag: v255-rc1~95 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9968ca32cf482dbe61447e210638b5df80b74a7c;p=thirdparty%2Fsystemd.git network: free dhcp6_hostname Fixes: b90480c80daa ("network: introduce SendHostname/Hostname DHCPv6 options") --- diff --git a/src/network/networkd-network.c b/src/network/networkd-network.c index b9119d9d18c..9ef28d283b7 100644 --- a/src/network/networkd-network.c +++ b/src/network/networkd-network.c @@ -722,6 +722,7 @@ static Network *network_free(Network *network) { /* DHCPv6 client */ free(network->dhcp6_mudurl); + free(network->dhcp6_hostname); strv_free(network->dhcp6_user_class); strv_free(network->dhcp6_vendor_class); set_free(network->dhcp6_request_options);