diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | lib/widgets/ephy-location-entry.c | 2 |
2 files changed, 8 insertions, 0 deletions
@@ -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; } |