mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 17:44:45 +00:00
Remove a warning about incorrect types, after discussion in channel it was decided to do it as &Process->Pcb instead of (PKPROCESS)Process.
svn path=/trunk/; revision=11633
This commit is contained in:
parent
2e3419423b
commit
0745f5a9ae
1 changed files with 1 additions and 1 deletions
|
@ -837,7 +837,7 @@ KdbSymFreeProcessSymbols(IN PEPROCESS Process)
|
|||
CurrentProcess = PsGetCurrentProcess();
|
||||
if (CurrentProcess != Process)
|
||||
{
|
||||
KeAttachProcess(Process);
|
||||
KeAttachProcess(&Process->Pcb);
|
||||
}
|
||||
Peb = Process->Peb;
|
||||
ASSERT(Peb);
|
||||
|
|
Loading…
Reference in a new issue