mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +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();
|
CurrentProcess = PsGetCurrentProcess();
|
||||||
if (CurrentProcess != Process)
|
if (CurrentProcess != Process)
|
||||||
{
|
{
|
||||||
KeAttachProcess(Process);
|
KeAttachProcess(&Process->Pcb);
|
||||||
}
|
}
|
||||||
Peb = Process->Peb;
|
Peb = Process->Peb;
|
||||||
ASSERT(Peb);
|
ASSERT(Peb);
|
||||||
|
|
Loading…
Reference in a new issue