summaryrefslogtreecommitdiff
path: root/desktop/browser.c
diff options
context:
space:
mode:
authorVincent Sanders <vince@netsurf-browser.org>2010-02-11 10:58:26 +0000
committerVincent Sanders <vince@netsurf-browser.org>2010-02-11 10:58:26 +0000
commitcf322aeda3b09278e287e25af824e1d15e4bc8d8 (patch)
tree2e112be9837727090138dbc7019e42b72047e0b4 /desktop/browser.c
parent160c5de28324e4dcf71467abc196ea125e464768 (diff)
downloadnetsurf-cf322aeda3b09278e287e25af824e1d15e4bc8d8.tar.gz
netsurf-cf322aeda3b09278e287e25af824e1d15e4bc8d8.tar.bz2
Review fixups from Daniel Silverstone
Ensure status text statistics are initialised Fix documentation and indentation of status text variables. svn path=/trunk/netsurf/; revision=9968
Diffstat (limited to 'desktop/browser.c')
-rw-r--r--desktop/browser.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/desktop/browser.c b/desktop/browser.c
index 4986176d7..a4c1e2156 100644
--- a/desktop/browser.c
+++ b/desktop/browser.c
@@ -197,8 +197,11 @@ void browser_window_initialise_common(struct browser_window *bw,
bw->drag_type = DRAGGING_NONE;
bw->scale = (float) option_scale / 100.0;
+ /* initialise status text cache */
bw->status_text = NULL;
bw->status_text_len = 0;
+ bw->status_match = 0;
+ bw->status_miss = 0;
}