Index: ntoskrnl/ke/i386/cpu.c =================================================================== --- ntoskrnl/ke/i386/cpu.c (révision 57355) +++ ntoskrnl/ke/i386/cpu.c (copie de travail) @@ -1137,7 +1137,7 @@ INIT_FUNCTION KiI386PentiumLockErrataFixup(VOID) { - KDESCRIPTOR IdtDescriptor; + KDESCRIPTOR IdtDescriptor = {0, 0, 0}; PKIDTENTRY NewIdt, NewIdt2; /* Allocate memory for a new IDT */ Index: ntoskrnl/ke/profobj.c =================================================================== --- ntoskrnl/ke/profobj.c (révision 57355) +++ ntoskrnl/ke/profobj.c (copie de travail) @@ -142,7 +142,7 @@ KeLowerIrql(OldIrql); /* Free the pool */ - if (FreeBuffer) ExFreePool(SourceBuffer); + if (FreeBuffer) ExFreePoolWithTag(SourceBuffer, 'forP'); /* Return whether we could start the profile */ return StartedProfile;