ntdll: Initialize needs_close to FALSE.

This commit is contained in:
Marcus Meissner 2007-02-08 20:20:34 +01:00 committed by Alexandre Julliard
parent ddb5720118
commit a4c47c9ec3
1 changed files with 1 additions and 1 deletions

View File

@ -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);