From dad773b3ca597c3b9b6953bd6130fd0b9980bc0c Mon Sep 17 00:00:00 2001 From: Aleksey Bragin Date: Sun, 17 May 2009 16:46:58 +0000 Subject: [PATCH] - Initialize IoCountOperations variable to FALSE by default. Spotted by Dmitry Chapyshev & winetests. svn path=/trunk/; revision=40961 --- reactos/ntoskrnl/io/iomgr/iomgr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/ntoskrnl/io/iomgr/iomgr.c b/reactos/ntoskrnl/io/iomgr/iomgr.c index 52c40a68fb5..d1e63ff171a 100644 --- a/reactos/ntoskrnl/io/iomgr/iomgr.c +++ b/reactos/ntoskrnl/io/iomgr/iomgr.c @@ -31,7 +31,7 @@ POBJECT_TYPE IoDeviceObjectType = NULL; POBJECT_TYPE IoFileObjectType = NULL; extern POBJECT_TYPE IoControllerObjectType; extern UNICODE_STRING NtSystemRoot; -BOOLEAN IoCountOperations; +BOOLEAN IoCountOperations = FALSE; ULONG IoReadOperationCount = 0; LARGE_INTEGER IoReadTransferCount = {{0, 0}}; ULONG IoWriteOperationCount = 0;