From 5ae169833922f9b78545eb9437f377ba66f3270b Mon Sep 17 00:00:00 2001 From: Emmanuel Rodriguez Date: Tue, 16 Jun 2009 23:12:28 +0200 Subject: [PATCH] Free the id when destroying the map source --- champlain/champlain-map-source.c | 1 + 1 file changed, 1 insertion(+) diff --git a/champlain/champlain-map-source.c b/champlain/champlain-map-source.c index 90b7153..57535ba 100644 --- a/champlain/champlain-map-source.c +++ b/champlain/champlain-map-source.c @@ -175,6 +175,7 @@ champlain_map_source_finalize (GObject *object) ChamplainMapSource *map_source = CHAMPLAIN_MAP_SOURCE (object); ChamplainMapSourcePrivate *priv = map_source->priv; + g_free (priv->id); g_free (priv->name); g_free (priv->license); g_free (priv->license_uri); -- 2.39.5