mirror of
https://github.com/reactos/reactos.git
synced 2024-11-23 11:33:31 +08:00
[EVTLIB] Fix size of event log record
The size is 32bit, don't read a SIZE_T. Fixes crashes of advapi32_winetest eventlog on x64.
This commit is contained in:
parent
565828127f
commit
a8ece7e81a
@ -1205,7 +1205,7 @@ ElfReadRecord(
|
||||
NTSTATUS Status;
|
||||
LARGE_INTEGER FileOffset;
|
||||
ULONG RecOffset;
|
||||
SIZE_T RecSize;
|
||||
ULONG RecSize;
|
||||
SIZE_T ReadLength;
|
||||
|
||||
ASSERT(LogFile);
|
||||
|
Loading…
Reference in New Issue
Block a user