mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 18:23:21 +00:00
[NTOS] Add missing brackets. Comment out some unused statements. CORE-11799 (#94)
This commit is contained in:
parent
5cb0615147
commit
840320cbd1
2 changed files with 3 additions and 3 deletions
|
@ -210,7 +210,7 @@ MmGetOffsetPageFile(PRETRIEVAL_POINTERS_BUFFER RetrievalPointers, LARGE_INTEGER
|
||||||
{
|
{
|
||||||
const LARGE_INTEGER dummy =
|
const LARGE_INTEGER dummy =
|
||||||
{
|
{
|
||||||
0
|
{0}
|
||||||
};
|
};
|
||||||
return dummy;
|
return dummy;
|
||||||
}
|
}
|
||||||
|
|
|
@ -256,11 +256,11 @@ WmipQueryRawSMBiosTables(
|
||||||
AllData->WnodeHeader.KernelHandle = NULL;
|
AllData->WnodeHeader.KernelHandle = NULL;
|
||||||
//AllData->WnodeHeader.TimeStamp;
|
//AllData->WnodeHeader.TimeStamp;
|
||||||
AllData->WnodeHeader.Guid = MSSmBios_RawSMBiosTables_GUID;
|
AllData->WnodeHeader.Guid = MSSmBios_RawSMBiosTables_GUID;
|
||||||
AllData->WnodeHeader.ClientContext;
|
//AllData->WnodeHeader.ClientContext;
|
||||||
AllData->WnodeHeader.Flags = WNODE_FLAG_FIXED_INSTANCE_SIZE;
|
AllData->WnodeHeader.Flags = WNODE_FLAG_FIXED_INSTANCE_SIZE;
|
||||||
AllData->DataBlockOffset = sizeof(WNODE_ALL_DATA);
|
AllData->DataBlockOffset = sizeof(WNODE_ALL_DATA);
|
||||||
AllData->InstanceCount = 1;
|
AllData->InstanceCount = 1;
|
||||||
AllData->OffsetInstanceNameOffsets;
|
//AllData->OffsetInstanceNameOffsets;
|
||||||
AllData->FixedInstanceSize = TableSize;
|
AllData->FixedInstanceSize = TableSize;
|
||||||
|
|
||||||
RtlCopyMemory(AllData + 1, TableData, TableSize);
|
RtlCopyMemory(AllData + 1, TableData, TableSize);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue