Author: hpoussin Date: Tue Nov 27 11:41:27 2007 New Revision: 30812
URL: http://svn.reactos.org/svn/reactos?rev=30812&view=rev Log: No need to increment handle count, it is already done in ExpAllocateHandleTableEntry()
Modified: trunk/reactos/ntoskrnl/ex/handle.c
Modified: trunk/reactos/ntoskrnl/ex/handle.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/ex/handle.c?rev=30... ============================================================================== --- trunk/reactos/ntoskrnl/ex/handle.c (original) +++ trunk/reactos/ntoskrnl/ex/handle.c Tue Nov 27 11:41:27 2007 @@ -1120,9 +1120,8 @@ HandleTableEntry, NewEntry)) { - /* Lock the entry, increase the handle count */ + /* Lock the entry */ NewEntry->Value |= EXHANDLE_TABLE_ENTRY_LOCK_BIT; - NewTable->HandleCount++; } else {