diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2003-06-28 07:20:47 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2003-06-28 07:20:47 +0800 |
commit | 33dd5a32b5c97b6bb5d0bd8039bd52bae4eb7b67 (patch) | |
tree | f09223889121ba4cbf742e968f0d61a47c2c5769 /lib/widgets | |
parent | 4ddb9e1f94a1c75804bf699f5cee9cbe0d45ecab (diff) | |
download | gsoc2013-epiphany-33dd5a32b5c97b6bb5d0bd8039bd52bae4eb7b67.tar gsoc2013-epiphany-33dd5a32b5c97b6bb5d0bd8039bd52bae4eb7b67.tar.gz gsoc2013-epiphany-33dd5a32b5c97b6bb5d0bd8039bd52bae4eb7b67.tar.bz2 gsoc2013-epiphany-33dd5a32b5c97b6bb5d0bd8039bd52bae4eb7b67.tar.lz gsoc2013-epiphany-33dd5a32b5c97b6bb5d0bd8039bd52bae4eb7b67.tar.xz gsoc2013-epiphany-33dd5a32b5c97b6bb5d0bd8039bd52bae4eb7b67.tar.zst gsoc2013-epiphany-33dd5a32b5c97b6bb5d0bd8039bd52bae4eb7b67.zip |
Fix mem leaks.
2003-06-28 Christian Persch <chpe@cvs.gnome.org>
* src/ephy-navigation-action.c: (ephy_navigation_action_finalize),
(ephy_navigation_action_class_init):
* src/ephy-spinner-action.c: (ephy_spinner_action_finalize),
(ephy_spinner_action_class_init):
* lib/widgets/ephy-location-entry.c:
(ephy_location_entry_editable_changed_cb):
Fix mem leaks.
Diffstat (limited to 'lib/widgets')
-rw-r--r-- | lib/widgets/ephy-location-entry.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/widgets/ephy-location-entry.c b/lib/widgets/ephy-location-entry.c index 9488c7c11..8e869e1a5 100644 --- a/lib/widgets/ephy-location-entry.c +++ b/lib/widgets/ephy-location-entry.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2002 Ricardo Fernández Pascual + * Copyright (C) 2002 Ricardo Fernández Pascual * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -693,8 +693,8 @@ ephy_location_entry_editable_changed_cb (GtkEditable *editable, EphyLocationEntr { p->going_to_site = FALSE; g_signal_emit (e, EphyLocationEntrySignals[ACTIVATED], 0, NULL, url); - g_free (url); } + g_free (url); } if (p->user_changed) |