Commit b8ee1459 authored by Gerald Pfeifer's avatar Gerald Pfeifer Committed by Alexandre Julliard

ntdll/tests: Remove variable len which is not really used from create_file_test.

parent c5bc2a5d
...@@ -163,9 +163,8 @@ static void create_file_test(void) ...@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment