mirror of
https://github.com/morgan9e/FreeRDP
synced 2026-04-14 00:14:11 +09:00
[core,orders] fix update_read_delta
This commit is contained in:
@@ -866,7 +866,7 @@ static INLINE BOOL update_read_delta(wStream* s, INT32* value)
|
||||
Stream_Read_UINT8(s, byte);
|
||||
|
||||
if (byte & 0x40)
|
||||
uvalue = (byte | ((~0x3F) & 0xFF));
|
||||
uvalue = (byte | ~0x3F);
|
||||
else
|
||||
uvalue = (byte & 0x3F);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user