- NtLoadKey: Call NtLoadKeyEx directly instead of calling NtLoadKey2 (which forwards to NtLoadKeyEx)

svn path=/trunk/; revision=35629
This commit is contained in:
Stefan Ginsberg 2008-08-25 15:10:27 +00:00
parent 6805ef1936
commit a362028c86

View file

@ -707,7 +707,7 @@ NtLoadKey(IN POBJECT_ATTRIBUTES KeyObjectAttributes,
IN POBJECT_ATTRIBUTES FileObjectAttributes) IN POBJECT_ATTRIBUTES FileObjectAttributes)
{ {
/* Call the newer API */ /* Call the newer API */
return NtLoadKey2(KeyObjectAttributes, FileObjectAttributes, 0); return NtLoadKeyEx(KeyObjectAttributes, FileObjectAttributes, 0, NULL);
} }
NTSTATUS NTSTATUS