mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
[NTOSKRNL/PPC]
Fix sizeof() wrong usage svn path=/trunk/; revision=50611
This commit is contained in:
parent
d3bca39b11
commit
0b40557c13
1 changed files with 1 additions and 1 deletions
|
@ -44,7 +44,7 @@ NTAPI
|
|||
CPUID(IN ULONG CpuInfo[4],
|
||||
IN ULONG InfoType)
|
||||
{
|
||||
RtlZeroMemory(CpuInfo, sizeof(CpuInfo));
|
||||
RtlZeroMemory(CpuInfo, sizeof(CpuInfo) * sizeof(ULONG));
|
||||
}
|
||||
|
||||
VOID
|
||||
|
|
Loading…
Reference in a new issue