mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 09:34:43 +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
|
||||
* PROJECT: ReactOS kernel
|
||||
|
@ -312,7 +312,7 @@ PiDeleteProcess(PVOID ObjectBody)
|
|||
|
||||
DPRINT("PiDeleteProcess(ObjectBody %x)\n",ObjectBody);
|
||||
|
||||
Process = (PEPROCESS)Process;
|
||||
Process = (PEPROCESS)ObjectBody;
|
||||
KeAcquireSpinLock(&PsProcessListLock, &oldIrql);
|
||||
for (i = 0; i < PiProcessNotifyRoutineCount; i++)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue