diff --git a/reactos/ntoskrnl/cm/registry.c b/reactos/ntoskrnl/cm/registry.c index 1ef39d93d93..0ce45fc2418 100644 --- a/reactos/ntoskrnl/cm/registry.c +++ b/reactos/ntoskrnl/cm/registry.c @@ -1,4 +1,4 @@ -/* $Id: registry.c,v 1.121 2004/02/07 17:30:14 hbirr Exp $ +/* $Id: registry.c,v 1.122 2004/03/07 19:59:36 hbirr Exp $ * * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS kernel @@ -260,6 +260,7 @@ CmInitializeRegistry(VOID) /* Initialize the Key object type */ CmiKeyType = ExAllocatePool(NonPagedPool, sizeof(OBJECT_TYPE)); assert(CmiKeyType); + CmiKeyType->Tag = TAG('R', 'e', 'g', 'K'); CmiKeyType->TotalObjects = 0; CmiKeyType->TotalHandles = 0; CmiKeyType->MaxObjects = LONG_MAX; diff --git a/reactos/ntoskrnl/nt/evtpair.c b/reactos/ntoskrnl/nt/evtpair.c index 1f02ae381ed..b06fbc79b5f 100644 --- a/reactos/ntoskrnl/nt/evtpair.c +++ b/reactos/ntoskrnl/nt/evtpair.c @@ -1,4 +1,4 @@ -/* $Id: evtpair.c,v 1.20 2003/12/30 18:52:05 fireball Exp $ +/* $Id: evtpair.c,v 1.21 2004/03/07 19:59:37 hbirr Exp $ * * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS kernel @@ -71,7 +71,7 @@ NtInitializeEventPairImplementation(VOID) ExEventPairObjectType = ExAllocatePool(NonPagedPool,sizeof(OBJECT_TYPE)); RtlCreateUnicodeString(&ExEventPairObjectType->TypeName, L"EventPair"); - + ExEventPairObjectType->Tag = TAG('E', 'v', 'P', 'a'); ExEventPairObjectType->MaxObjects = ULONG_MAX; ExEventPairObjectType->MaxHandles = ULONG_MAX; ExEventPairObjectType->TotalObjects = 0;