From 7eb054d09973d880c8806f69bc49bf39deba1206 Mon Sep 17 00:00:00 2001 From: Thomas Haller Date: Wed, 12 Oct 2016 19:44:32 +0200 Subject: [PATCH] libnm: fix memleak in NMDeviceVxlan --- libnm/nm-device-vxlan.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libnm/nm-device-vxlan.c b/libnm/nm-device-vxlan.c index 86b5fca8e7..eaf37cc075 100644 --- a/libnm/nm-device-vxlan.c +++ b/libnm/nm-device-vxlan.c @@ -458,6 +458,8 @@ finalize (GObject *object) g_free (priv->hw_address); g_clear_object (&priv->parent); + g_free (priv->group); + g_free (priv->local); G_OBJECT_CLASS (nm_device_vxlan_parent_class)->finalize (object); }