aboutsummaryrefslogtreecommitdiffstats
path: root/src/ephy-shell.c
diff options
context:
space:
mode:
authorXan Lopez <xan@igalia.com>2012-06-15 14:41:17 +0800
committerXan Lopez <xan@igalia.com>2012-06-15 14:41:17 +0800
commita279d7c8316c3a21d4000c45b38e25f55b339b43 (patch)
treeb13ea99180837aef659e3681378250118043e8b0 /src/ephy-shell.c
parentd2d47f45c2eac3ea3c6626df0143482aa0179878 (diff)
downloadgsoc2013-epiphany-a279d7c8316c3a21d4000c45b38e25f55b339b43.tar
gsoc2013-epiphany-a279d7c8316c3a21d4000c45b38e25f55b339b43.tar.gz
gsoc2013-epiphany-a279d7c8316c3a21d4000c45b38e25f55b339b43.tar.bz2
gsoc2013-epiphany-a279d7c8316c3a21d4000c45b38e25f55b339b43.tar.lz
gsoc2013-epiphany-a279d7c8316c3a21d4000c45b38e25f55b339b43.tar.xz
gsoc2013-epiphany-a279d7c8316c3a21d4000c45b38e25f55b339b43.tar.zst
gsoc2013-epiphany-a279d7c8316c3a21d4000c45b38e25f55b339b43.zip
ephy-shell: initialize jump_to variable to FALSE
Otherwise commit ccf3836d601c makes us use that variable with a garbage value most of the time, since it won't be initialized unconditionally anymore.
Diffstat (limited to 'src/ephy-shell.c')
-rw-r--r--src/ephy-shell.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ephy-shell.c b/src/ephy-shell.c
index cbfc169cc..08dbc15c4 100644
--- a/src/ephy-shell.c
+++ b/src/ephy-shell.c
@@ -680,7 +680,7 @@ ephy_shell_new_tab_full (EphyShell *shell,
gboolean fullscreen_lockdown = FALSE;
gboolean in_new_window = TRUE;
gboolean open_page = FALSE;
- gboolean jump_to;
+ gboolean jump_to = FALSE;
gboolean active_is_blank = FALSE;
gboolean copy_history = TRUE;
GtkWidget *nb;