diff options
author | Jay Sorg <jay.sorg@gmail.com> | 2014-12-16 17:36:18 -0800 |
---|---|---|
committer | Jay Sorg <jay.sorg@gmail.com> | 2014-12-16 17:36:18 -0800 |
commit | ce1a4e660b616e626fc69ce4053de3034befa2ef (patch) | |
tree | 771451721b4464a82318c694300b134878010acc /libxrdp | |
parent | 69a551cdf7993d510de30790682f798b72c30f9b (diff) | |
download | xrdp-proprietary-ce1a4e660b616e626fc69ce4053de3034befa2ef.tar.gz xrdp-proprietary-ce1a4e660b616e626fc69ce4053de3034befa2ef.zip |
libxrdp: fastpath RDP_INPUT_SYNCHRONIZE fix
Diffstat (limited to 'libxrdp')
-rw-r--r-- | libxrdp/xrdp_fastpath.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libxrdp/xrdp_fastpath.c b/libxrdp/xrdp_fastpath.c index f84f5ae1..852777eb 100644 --- a/libxrdp/xrdp_fastpath.c +++ b/libxrdp/xrdp_fastpath.c @@ -264,7 +264,7 @@ xrdp_fastpath_process_EVENT_SYNC(struct xrdp_fastpath *self, int eventCode, RDP_INPUT_MOUSEX - 0x8002 */ /* call to xrdp_wm.c : callback */ self->session->callback(self->session->id, RDP_INPUT_SYNCHRONIZE, - eventCode, 0, eventFlags, 0); + eventFlags, 0, 0, 0); } return 0; } |