aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog8
-rw-r--r--lib/widgets/ephy-location-entry.c3
2 files changed, 10 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index a2ffdb63b..01b56a88a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,7 +2,13 @@
* lib/widgets/ephy-location-entry.c: (completion_func):
- Fix mem leak.
+ Fix more mem leaks.
+
+2003-12-16 Christian Persch <chpe@cvs.gnome.org>
+
+ * lib/widgets/ephy-location-entry.c: (completion_func):
+
+ Fix mem leak. (Found by synap.)
2003-12-16 Marco Pesenti Gritti <marco@gnome.org>
diff --git a/lib/widgets/ephy-location-entry.c b/lib/widgets/ephy-location-entry.c
index 671cf2525..b991c6065 100644
--- a/lib/widgets/ephy-location-entry.c
+++ b/lib/widgets/ephy-location-entry.c
@@ -255,6 +255,9 @@ completion_func (GtkEntryCompletion *completion,
g_free (item);
g_free (normalized_string);
g_free (case_normalized_string);
+ g_free (keywords);
+ g_free (normalized_keywords);
+ g_free (case_normalized_keywords);
return ret;
}