Re: [PATCH 02/10] ntdll/tests: add a test for STATUS_OBJECT_TYPE_MISMATCH
18 Jul
2011
18 Jul
'11
10:47 a.m.
Bernhard Loos <bernhardloos(a)googlemail.com> writes:
@@ -774,6 +775,28 @@ static void test_query_object(void) pNtClose( handle ); }
+static void test_type_mismatch(void) +{ + HANDLE h; + NTSTATUS res; + OBJECT_ATTRIBUTES attr; + + attr.Length = sizeof(attr); + attr.RootDirectory = 0; + attr.ObjectName = NULL; + attr.Attributes = 0; + attr.SecurityDescriptor = NULL; + attr.SecurityQualityOfService = NULL; +
Please avoid messing up the indentation. -- Alexandre Julliard julliard(a)winehq.org
5262
Age (days ago)
5262
Last active (days ago)
0 comments
1 participants
participants (1)
-
Alexandre Julliard