From a4c47c9ec310385e0c1dbd736ccc45fe0f360ffe Mon Sep 17 00:00:00 2001 From: Marcus Meissner Date: Thu, 8 Feb 2007 20:20:34 +0100 Subject: [PATCH] ntdll: Initialize needs_close to FALSE. --- dlls/ntdll/file.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/ntdll/file.c b/dlls/ntdll/file.c index a9b91428707..cf9d64dae91 100644 --- a/dlls/ntdll/file.c +++ b/dlls/ntdll/file.c @@ -1227,7 +1227,7 @@ NTSTATUS WINAPI NtQueryInformationFile( HANDLE hFile, PIO_STATUS_BLOCK io, }; struct stat st; - int fd, needs_close; + int fd, needs_close = FALSE; TRACE("(%p,%p,%p,0x%08x,0x%08x)\n", hFile, io, ptr, len, class); -- 2.11.4.GIT