Commit in reactos/ntoskrnl on MAIN
cm/registry.c+2-11.121 -> 1.122
nt/evtpair.c+2-21.20 -> 1.21
+4-3
2 modified files
- Initialized the object tag to prevent the tag 0xcccccccc.

reactos/ntoskrnl/cm
registry.c 1.121 -> 1.122
diff -u -r1.121 -r1.122
--- registry.c	7 Feb 2004 17:30:14 -0000	1.121
+++ registry.c	7 Mar 2004 19:59:36 -0000	1.122
@@ -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 @@
   /*  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;

reactos/ntoskrnl/nt
evtpair.c 1.20 -> 1.21
diff -u -r1.20 -r1.21
--- evtpair.c	30 Dec 2003 18:52:05 -0000	1.20
+++ evtpair.c	7 Mar 2004 19:59:37 -0000	1.21
@@ -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 @@
    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;
CVSspam 0.2.8