From d5a1f1deda602e00cd55724ae7f0c296a38b3994 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Thu, 28 Jun 2012 15:18:10 -0400 Subject: [PATCH] pull: Fix a memory leak --- src/ostree/ostree-fetcher.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ostree/ostree-fetcher.c b/src/ostree/ostree-fetcher.c index 0624aae6..c1239cba 100644 --- a/src/ostree/ostree-fetcher.c +++ b/src/ostree/ostree-fetcher.c @@ -58,6 +58,7 @@ pending_uri_free (OstreeFetcherPendingURI *pending) if (pending->refcount > 0) return; + soup_uri_free (pending->uri); g_clear_object (&pending->self); g_clear_object (&pending->tmpfile); g_clear_object (&pending->request);