diff options
author | Mario Sanchez Prada <msanchez@igalia.com> | 2010-04-07 17:39:52 +0800 |
---|---|---|
committer | Xan Lopez <xan@gnome.org> | 2010-04-07 17:49:22 +0800 |
commit | 387e246e124beb12db50facde83b04dbf04770da (patch) | |
tree | c533efcae67654d9eb0327d012ba658349989514 /src | |
parent | 0130c7f4cd730755dc6004689ec28458f0b7cf61 (diff) | |
download | gsoc2013-epiphany-387e246e124beb12db50facde83b04dbf04770da.tar.gz gsoc2013-epiphany-387e246e124beb12db50facde83b04dbf04770da.tar.zst gsoc2013-epiphany-387e246e124beb12db50facde83b04dbf04770da.zip |
Duplicate strings to be used as url in the Up dropdown menu
Bug #599156
Signed-off-by: Xan Lopez <xan@gnome.org>
Diffstat (limited to 'src')
-rw-r--r-- | src/ephy-navigation-action.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ephy-navigation-action.c b/src/ephy-navigation-action.c index c2ebce792..35644ab0c 100644 --- a/src/ephy-navigation-action.c +++ b/src/ephy-navigation-action.c @@ -299,7 +299,7 @@ build_up_menu (EphyNavigationAction *action) EphyNode *node; const char *title = NULL; - url = l->data; + url = g_strdup (l->data); if (url == NULL) continue; |