ntdll/tests: Remove unused variable from test_query_volume_information_file.

This commit is contained in:
Gerald Pfeifer 2010-11-24 00:43:24 +01:00 committed by Alexandre Julliard
parent 33c528188d
commit 8c7164603f
1 changed files with 1 additions and 2 deletions

View File

@ -1468,11 +1468,10 @@ static void test_query_volume_information_file(void)
OBJECT_ATTRIBUTES attr;
IO_STATUS_BLOCK io;
UNICODE_STRING nameW;
UINT len;
FILE_FS_VOLUME_INFORMATION *ffvi;
BYTE buf[sizeof(FILE_FS_VOLUME_INFORMATION) + MAX_PATH * sizeof(WCHAR)];
len = GetWindowsDirectoryW( path, MAX_PATH );
GetWindowsDirectoryW( path, MAX_PATH );
pRtlDosPathNameToNtPathName_U( path, &nameW, NULL, NULL );
attr.Length = sizeof(attr);
attr.RootDirectory = 0;