[core] fix marshalling of DynamicTimeZone

The field is an UTF16 field, the length was announced as the length of the
UTF8 string.
This commit is contained in:
David Fort 2023-10-24 11:56:19 +02:00 committed by akallabeth
parent c5cd40f1bc
commit 60ea534ccd
1 changed files with 1 additions and 1 deletions

View File

@ -571,7 +571,7 @@ static BOOL rdp_write_extended_info_packet(rdpRdp* rdp, wStream* s)
const char* tz = freerdp_settings_get_string(settings, FreeRDP_DynamicDSTTimeZoneKeyName);
if (tz)
rlen = strnlen(tz, 254);
Stream_Write_UINT16(s, (UINT16)rlen);
Stream_Write_UINT16(s, (UINT16)rlen * sizeof(WCHAR));
if (Stream_Write_UTF16_String_From_UTF8(s, rlen, tz, rlen, FALSE) < 0)
goto fail;
Stream_Write_UINT16(s, settings->DynamicDaylightTimeDisabled ? 0x01 : 0x00);