aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--lib/widgets/ephy-location-entry.c2
2 files changed, 8 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 02db21b1c..a2ffdb63b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2003-12-16 Christian Persch <chpe@cvs.gnome.org>
+
+ * lib/widgets/ephy-location-entry.c: (completion_func):
+
+ Fix mem leak.
+
2003-12-16 Marco Pesenti Gritti <marco@gnome.org>
* embed/ephy-encodings.c: (ephy_encodings_get_encodings):
diff --git a/lib/widgets/ephy-location-entry.c b/lib/widgets/ephy-location-entry.c
index c935f9d04..671cf2525 100644
--- a/lib/widgets/ephy-location-entry.c
+++ b/lib/widgets/ephy-location-entry.c
@@ -242,6 +242,8 @@ completion_func (GtkEntryCompletion *completion,
if (!strncmp (key_prefixed, case_normalized_string,
strlen (key_prefixed)))
{
+ g_free (key_prefixed);
+
ret = TRUE;
break;
}