mirror of
https://github.com/reactos/reactos.git
synced 2025-04-19 20:19:26 +00:00
Compilation bug fixed (due to having used an "unknown" field in the
SYSTEM_MODULE_ENTRY object I updated yesterday). svn path=/trunk/; revision=1819
This commit is contained in:
parent
4fc0783845
commit
a9dc0b739e
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
/* $Id: loader.c,v 1.73 2001/04/16 02:02:05 dwelch Exp $
|
||||
/* $Id: loader.c,v 1.74 2001/04/23 22:00:28 ea Exp $
|
||||
*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS kernel
|
||||
|
@ -918,7 +918,7 @@ LdrpQueryModuleInformation(PVOID Buffer,
|
|||
Smi->Module[ModuleCount].Unknown2 = 0; /* Always 0 */
|
||||
Smi->Module[ModuleCount].BaseAddress = current->Base;
|
||||
Smi->Module[ModuleCount].Size = current->Length;
|
||||
Smi->Module[ModuleCount].Unknown3 = 0; /* Flags ??? */
|
||||
Smi->Module[ModuleCount].Flags = 0; /* Flags ??? (GN) */
|
||||
Smi->Module[ModuleCount].EntryIndex = ModuleCount;
|
||||
|
||||
AnsiName.Length = 0;
|
||||
|
|
Loading…
Reference in a new issue