diff options
author | speidy <speidy@gmail.com> | 2016-12-27 09:53:53 +0200 |
---|---|---|
committer | speidy <speidy@gmail.com> | 2016-12-27 09:53:53 +0200 |
commit | a96c91b38e68e189e6861dfdf3df5852881ad470 (patch) | |
tree | 565df03c02d6731b6bf1d25b0ee88bd2006eb6e3 | |
parent | 6c0ae58880df436e64f1a5914427b83d703a85cf (diff) | |
download | xrdp-proprietary-a96c91b38e68e189e6861dfdf3df5852881ad470.tar.gz xrdp-proprietary-a96c91b38e68e189e6861dfdf3df5852881ad470.zip |
libxrdp: fix Fast-Path Synchronize Update message
-rw-r--r-- | libxrdp/xrdp_rdp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libxrdp/xrdp_rdp.c b/libxrdp/xrdp_rdp.c index dd6e6d38..219c0260 100644 --- a/libxrdp/xrdp_rdp.c +++ b/libxrdp/xrdp_rdp.c @@ -782,9 +782,9 @@ xrdp_rdp_send_data_update_sync(struct xrdp_rdp *self) return 1; } out_uint16_le(s, RDP_UPDATE_SYNCHRONIZE); + out_uint16_le(s, 0); /* pad */ } - out_uint16_le(s, 0); /* pad */ s_mark_end(s); if (self->client_info.use_fast_path & 1) /* fastpath output supported */ |