Module: wine Branch: master Commit: a4c47c9ec310385e0c1dbd736ccc45fe0f360ffe URL: http://source.winehq.org/git/wine.git/?a=commit;h=a4c47c9ec310385e0c1dbd736c...
Author: Marcus Meissner marcus@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);