mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
ntdll/tests: Remove variable len which is not really used from create_file_test.
This commit is contained in:
parent
c5bc2a5d2f
commit
b8ee145992
1 changed files with 1 additions and 2 deletions
|
@ -163,9 +163,8 @@ static void create_file_test(void)
|
||||||
OBJECT_ATTRIBUTES attr;
|
OBJECT_ATTRIBUTES attr;
|
||||||
IO_STATUS_BLOCK io;
|
IO_STATUS_BLOCK io;
|
||||||
UNICODE_STRING nameW;
|
UNICODE_STRING nameW;
|
||||||
UINT len;
|
|
||||||
|
|
||||||
len = GetCurrentDirectoryW( MAX_PATH, path );
|
GetCurrentDirectoryW( MAX_PATH, path );
|
||||||
pRtlDosPathNameToNtPathName_U( path, &nameW, NULL, NULL );
|
pRtlDosPathNameToNtPathName_U( path, &nameW, NULL, NULL );
|
||||||
attr.Length = sizeof(attr);
|
attr.Length = sizeof(attr);
|
||||||
attr.RootDirectory = 0;
|
attr.RootDirectory = 0;
|
||||||
|
|
Loading…
Reference in a new issue