From: 0x0916 Date: Tue, 27 Jun 2017 14:12:38 +0000 (+0800) Subject: confile: free netdev->downscript X-Git-Tag: lxc-1.0.11~34 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e6426fd3b02ee317bb463d29f5e74fba6f63b23c;p=thirdparty%2Flxc.git confile: free netdev->downscript Signed-off-by: 0x0916 --- diff --git a/src/lxc/conf.c b/src/lxc/conf.c index 67ef58b21..5d583d5f4 100644 --- a/src/lxc/conf.c +++ b/src/lxc/conf.c @@ -4455,6 +4455,7 @@ static void lxc_remove_nic(struct lxc_list *it) if (netdev->type == LXC_NET_VETH) free(netdev->priv.veth_attr.pair); free(netdev->upscript); + free(netdev->downscript); free(netdev->hwaddr); free(netdev->mtu); free(netdev->ipv4_gateway);