diff options
author | runge <runge> | 2006-01-11 15:01:12 +0000 |
---|---|---|
committer | runge <runge> | 2006-01-11 15:01:12 +0000 |
commit | 57cf0cdab5480efebaf447d5675e51b0d311ceee (patch) | |
tree | cb4b1419712454d31e85bd8558ff67b2d8fdac90 /x11vnc/pointer.c | |
parent | 0b7a0030acc27377b01e3afa41f672dc4d6a7561 (diff) | |
download | libtdevnc-57cf0cdab5480efebaf447d5675e51b0d311ceee.tar.gz libtdevnc-57cf0cdab5480efebaf447d5675e51b0d311ceee.zip |
x11vnc: close fd > 2 in run_user_command(), -nocmds in crash_debug, fix 64bit bug for -solid.
Diffstat (limited to 'x11vnc/pointer.c')
-rw-r--r-- | x11vnc/pointer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/x11vnc/pointer.c b/x11vnc/pointer.c index 6ff92d4..9622a7d 100644 --- a/x11vnc/pointer.c +++ b/x11vnc/pointer.c @@ -382,7 +382,7 @@ void do_button_mask_change(int mask, int button) { * Send a pointer button event to the X server. */ static void update_x11_pointer_mask(int mask) { - int snapped, xr_mouse = 1, i; + int snapped = 0, xr_mouse = 1, i; last_event = last_input = last_pointer_input = time(0); |