mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
[NTOS:IO] Avoid magic value in LdrProcessDriverModule.
This commit is contained in:
parent
8b35e46903
commit
4c6f7c01e5
1 changed files with 1 additions and 1 deletions
|
@ -710,7 +710,7 @@ LdrProcessDriverModule(PLDR_DATA_TABLE_ENTRY LdrEntry,
|
|||
{
|
||||
NTSTATUS Status;
|
||||
UNICODE_STRING BaseName, BaseDirectory;
|
||||
PLOAD_IMPORTS LoadedImports = (PVOID)-2;
|
||||
PLOAD_IMPORTS LoadedImports = MM_SYSLDR_NO_IMPORTS;
|
||||
PCHAR MissingApiName, Buffer;
|
||||
PWCHAR MissingDriverName;
|
||||
PVOID DriverBase = LdrEntry->DllBase;
|
||||
|
|
Loading…
Reference in a new issue