Marcus Meissner : ntdll: Initialize needs_close to FALSE.

Alexandre Julliard julliard at wine.codeweavers.com
Fri Feb 9 08:22:07 CST 2007


Module: wine
Branch: master
Commit: a4c47c9ec310385e0c1dbd736ccc45fe0f360ffe
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=a4c47c9ec310385e0c1dbd736ccc45fe0f360ffe

Author: Marcus Meissner <marcus at jet.franken.de>
Date:   Thu Feb  8 20:20:34 2007 +0100

ntdll: Initialize needs_close to FALSE.

---

 dlls/ntdll/file.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/ntdll/file.c b/dlls/ntdll/file.c
index a9b9142..cf9d64d 100644
--- a/dlls/ntdll/file.c
+++ b/dlls/ntdll/file.c
@@ -1227,7 +1227,7 @@ NTSTATUS WINAPI NtQueryInformationFile(
     };
 
     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);
 




More information about the wine-cvs mailing list