diff options
author | Xan Lopez <xan@igalia.com> | 2012-06-15 14:41:17 +0800 |
---|---|---|
committer | Xan Lopez <xan@igalia.com> | 2012-06-15 14:41:17 +0800 |
commit | a279d7c8316c3a21d4000c45b38e25f55b339b43 (patch) | |
tree | b13ea99180837aef659e3681378250118043e8b0 | |
parent | d2d47f45c2eac3ea3c6626df0143482aa0179878 (diff) | |
download | gsoc2013-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.
-rw-r--r-- | src/ephy-shell.c | 2 |
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; |