From 8c3bbaf46d40902580e6f80f3f5ff0ea424bb409 Mon Sep 17 00:00:00 2001 From: Emmanuel Rodriguez Date: Sun, 26 Apr 2009 10:24:50 +0200 Subject: [PATCH] Memory leak fix: map_free() noew frees the map --- champlain/champlain-map.c | 1 + 1 file changed, 1 insertion(+) diff --git a/champlain/champlain-map.c b/champlain/champlain-map.c index a69feda..570af3f 100644 --- a/champlain/champlain-map.c +++ b/champlain/champlain-map.c @@ -168,6 +168,7 @@ void map_free (Map *map) { g_object_unref (map->current_level); + g_free (map); } gboolean -- 2.39.5