summaryrefslogtreecommitdiff
path: root/frontends/riscos
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2016-12-29 11:59:27 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2016-12-29 11:59:27 +0000
commit07456db2dc6fc59a952e0160cb03ba494a05e05d (patch)
tree28074a25db7efe02b38661225d1278ba66b9c49e /frontends/riscos
parent743637a8d2105df6ffc464a3cb4753cdc8c1401f (diff)
downloadnetsurf-07456db2dc6fc59a952e0160cb03ba494a05e05d.tar.gz
netsurf-07456db2dc6fc59a952e0160cb03ba494a05e05d.tar.bz2
RISC OS: Squash use of uninitialised variable.
Diffstat (limited to 'frontends/riscos')
-rw-r--r--frontends/riscos/corewindow.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontends/riscos/corewindow.c b/frontends/riscos/corewindow.c
index 5c0b3e630..fa42b8f64 100644
--- a/frontends/riscos/corewindow.c
+++ b/frontends/riscos/corewindow.c
@@ -409,7 +409,7 @@ static bool ro_cw_mouse_click(wimp_pointer *pointer)
os_error *error;
wimp_window_state state;
int xpos, ypos;
- browser_mouse_state mouse;
+ browser_mouse_state mouse = 0;
bool handled = false;
struct ro_corewindow *ro_cw;