mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 15:47:54 +02:00
* fix #40603:
- 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:
parent
2c527cfc01
commit
75b5e8e63d
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user