mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
Fixed a wrong initialisation in PiDeleteProcess().
svn path=/trunk/; revision=2485
This commit is contained in:
parent
6837f9c4ef
commit
fae2e4844a
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
||||||
/* $Id: process.c,v 1.75 2002/01/03 17:59:09 ekohl Exp $
|
/* $Id: process.c,v 1.76 2002/01/04 22:35:26 hbirr Exp $
|
||||||
*
|
*
|
||||||
* COPYRIGHT: See COPYING in the top level directory
|
* COPYRIGHT: See COPYING in the top level directory
|
||||||
* PROJECT: ReactOS kernel
|
* PROJECT: ReactOS kernel
|
||||||
|
@ -312,7 +312,7 @@ PiDeleteProcess(PVOID ObjectBody)
|
||||||
|
|
||||||
DPRINT("PiDeleteProcess(ObjectBody %x)\n",ObjectBody);
|
DPRINT("PiDeleteProcess(ObjectBody %x)\n",ObjectBody);
|
||||||
|
|
||||||
Process = (PEPROCESS)Process;
|
Process = (PEPROCESS)ObjectBody;
|
||||||
KeAcquireSpinLock(&PsProcessListLock, &oldIrql);
|
KeAcquireSpinLock(&PsProcessListLock, &oldIrql);
|
||||||
for (i = 0; i < PiProcessNotifyRoutineCount; i++)
|
for (i = 0; i < PiProcessNotifyRoutineCount; i++)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue