mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 21:09:15 +00:00
- Fixed a wrong parameter in a call to LdrpLoadUserModuleSymbols.
svn path=/trunk/; revision=7561
This commit is contained in:
parent
adfc55b3cf
commit
bc6f5312c7
|
@ -1,4 +1,4 @@
|
|||
/* $Id: utils.c,v 1.77 2004/01/07 10:09:03 hbirr Exp $
|
||||
/* $Id: utils.c,v 1.78 2004/01/11 00:25:17 hbirr Exp $
|
||||
*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS kernel
|
||||
|
@ -2108,7 +2108,7 @@ LdrpLoadModule(IN PWSTR SearchPath OPTIONAL,
|
|||
return Status;
|
||||
}
|
||||
#ifdef KDBG
|
||||
LdrpLoadUserModuleSymbols(Module);
|
||||
LdrpLoadUserModuleSymbols(*Module);
|
||||
#endif
|
||||
RtlEnterCriticalSection(NtCurrentPeb()->LoaderLock);
|
||||
InsertTailList(&NtCurrentPeb()->Ldr->InInitializationOrderModuleList,
|
||||
|
|
Loading…
Reference in a new issue