From e49ebc81df09edbd2ec0d9b17f892428e00ebdb1 Mon Sep 17 00:00:00 2001 From: Filip Navara Date: Fri, 22 Oct 2004 20:07:13 +0000 Subject: [PATCH] - Fix uninitialized variable warning in KeFlushEntireTb. svn path=/trunk/; revision=11387 --- reactos/ntoskrnl/ke/device.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/reactos/ntoskrnl/ke/device.c b/reactos/ntoskrnl/ke/device.c index b398517f5db..df1a5aeb64f 100644 --- a/reactos/ntoskrnl/ke/device.c +++ b/reactos/ntoskrnl/ke/device.c @@ -1,4 +1,4 @@ -/* $Id: device.c,v 1.4 2004/10/13 22:27:03 ion Exp $ +/* $Id: device.c,v 1.5 2004/10/22 20:07:13 navaraf Exp $ * * FILE: ntoskrnl/ke/profile.c * PURPOSE: Kernel Device/Settings Functions @@ -55,8 +55,8 @@ KeFlushEntireTb( ) { KIRQL OldIrql; - PKPROCESS Process; - PKPCR Pcr; + PKPROCESS Process = NULL; + PKPCR Pcr = NULL; /* Raise the IRQL for the TB Flush */ OldIrql = KeRaiseIrqlToSynchLevel();