From 61855e656b42f31beae89b03f333ed941a5c154b Mon Sep 17 00:00:00 2001 From: Xan Lopez Date: Wed, 29 Jun 2011 21:25:27 +0200 Subject: [PATCH] soup-cache: plug memory leak --- libsoup/soup-cache.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libsoup/soup-cache.c b/libsoup/soup-cache.c index 18e63b8..bd4c2db 100644 --- a/libsoup/soup-cache.c +++ b/libsoup/soup-cache.c @@ -1721,6 +1721,7 @@ soup_cache_load (SoupCache *cache) cache->priv->lru_start = g_list_reverse (cache->priv->lru_start); /* frees */ + g_variant_iter_free (entries_iter); g_variant_unref (cache_variant); } -- 2.7.4