[epiphany] ephy-completion-model: fix GList of EphyHistoryURL leak



commit 19ccfbca0a09fe5d5728791bd1f90345b5ba77fa
Author: Pavel Vasin <rat4vier gmail com>
Date:   Fri Jun 8 21:11:07 2012 +0400

    ephy-completion-model: fix GList of EphyHistoryURL leak
    
    https://bugzilla.gnome.org/show_bug.cgi?id=677720

 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 d78e19d..7ab7619 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);
 }
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]