From: Steven Barth Date: Mon, 11 May 2015 19:49:13 +0000 (+0200) Subject: dhcpv4: remove invalid free() X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fodhcpd.git;a=commitdiff_plain;h=681ba23d0b3678a9a0c90ef938cd1d48f2ee6046;ds=sidebyside dhcpv4: remove invalid free() Signed-off-by: Steven Barth --- diff --git a/src/dhcpv4.c b/src/dhcpv4.c index 647cdc0..a657e13 100644 --- a/src/dhcpv4.c +++ b/src/dhcpv4.c @@ -222,7 +222,6 @@ int setup_dhcpv4_interface(struct interface *iface, bool enable) struct dhcpv4_assignment *a = list_first_entry(&iface->dhcpv4_assignments, struct dhcpv4_assignment, head); list_del(&a->head); - free(a->hostname); free(a); }