aboutsummaryrefslogtreecommitdiffstats
path: root/src/ephy-completion-model.c
diff options
context:
space:
mode:
authorPavel Vasin <rat4vier@gmail.com>2012-06-09 01:11:07 +0800
committerClaudio Saavedra <csaavedra@igalia.com>2012-06-12 17:03:05 +0800
commit19ccfbca0a09fe5d5728791bd1f90345b5ba77fa (patch)
tree0af3a021d88bd1b241ebc9fbeeaf269b03db64b1 /src/ephy-completion-model.c
parented9b5563be8ad98d683513eef0db5931f674890e (diff)
downloadgsoc2013-epiphany-19ccfbca0a09fe5d5728791bd1f90345b5ba77fa.tar
gsoc2013-epiphany-19ccfbca0a09fe5d5728791bd1f90345b5ba77fa.tar.gz
gsoc2013-epiphany-19ccfbca0a09fe5d5728791bd1f90345b5ba77fa.tar.bz2
gsoc2013-epiphany-19ccfbca0a09fe5d5728791bd1f90345b5ba77fa.tar.lz
gsoc2013-epiphany-19ccfbca0a09fe5d5728791bd1f90345b5ba77fa.tar.xz
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
Diffstat (limited to 'src/ephy-completion-model.c')
-rw-r--r--src/ephy-completion-model.c2
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);
}