From: Emmanuel Rodriguez Date: Tue, 16 Jun 2009 21:12:28 +0000 (+0200) Subject: Free the id when destroying the map source X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5ae169833922f9b78545eb9437f377ba66f3270b;p=libchamplain Free the id when destroying the map source --- 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);