diff options
author | Pavel Vasin <rat4vier@gmail.com> | 2012-06-09 01:11:07 +0800 |
---|---|---|
committer | Claudio Saavedra <csaavedra@igalia.com> | 2012-06-12 17:03:05 +0800 |
commit | 19ccfbca0a09fe5d5728791bd1f90345b5ba77fa (patch) | |
tree | 0af3a021d88bd1b241ebc9fbeeaf269b03db64b1 | |
parent | ed9b5563be8ad98d683513eef0db5931f674890e (diff) | |
download | gsoc2013-epiphany-19ccfbca0a09fe5d5728791bd1f90345b5ba77fa.tar.gz gsoc2013-epiphany-19ccfbca0a09fe5d5728791bd1f90345b5ba77fa.tar.zst gsoc2013-epiphany-19ccfbca0a09fe5d5728791bd1f90345b5ba77fa.zip |
ephy-completion-model: fix GList of EphyHistoryURL leak
https://bugzilla.gnome.org/show_bug.cgi?id=677720
-rw-r--r-- | src/ephy-completion-model.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ephy-completion-model.c b/src/ephy-completion-model.c index d78e19dfd..7ab7619dc 100644 --- a/src/ephy-completion-model.c +++ b/src/ephy-completion-model.c @@ -416,7 +416,7 @@ query_completed_cb (EphyHistoryService *service, g_free (user_data->search_string); g_slice_free (FindURLsData, user_data); - + g_list_free_full (urls, (GDestroyNotify)ephy_history_url_free); g_slist_free_full (list, (GDestroyNotify)free_potential_row); } |