- initialize thrdinfo record using Default() so that padding bytes are zeroed as well
  - correctly pass the count of ULONG_PTRs
This commit is contained in:
Sven/Sarah Barth 2024-02-09 15:08:27 +01:00
parent 2c527cfc01
commit 75b5e8e63d

View File

@ -375,12 +375,12 @@ var
var
thrdinfo: THREADNAME_INFO;
begin
thrdinfo:=Default(THREADNAME_INFO);
thrdinfo.dwType:=$1000;
thrdinfo.szName:=@ThreadName[1];
thrdinfo.dwThreadID:=threadHandle;
thrdinfo.dwFlags:=0;
try
RaiseException(MS_VC_EXCEPTION, 0, SizeOf(thrdinfo) div SizeOf(DWord), @thrdinfo);
RaiseException(MS_VC_EXCEPTION, 0, SizeOf(thrdinfo) div SizeOf(PtrUInt), @thrdinfo);
except
{do nothing}
end;