mirror of
https://github.com/reactos/reactos.git
synced 2025-08-02 05:35:40 +00:00
- NtLoadKey: Call NtLoadKeyEx directly instead of calling NtLoadKey2 (which forwards to NtLoadKeyEx)
svn path=/trunk/; revision=35629
This commit is contained in:
parent
6805ef1936
commit
a362028c86
1 changed files with 1 additions and 1 deletions
|
@ -707,7 +707,7 @@ NtLoadKey(IN POBJECT_ATTRIBUTES KeyObjectAttributes,
|
|||
IN POBJECT_ATTRIBUTES FileObjectAttributes)
|
||||
{
|
||||
/* Call the newer API */
|
||||
return NtLoadKey2(KeyObjectAttributes, FileObjectAttributes, 0);
|
||||
return NtLoadKeyEx(KeyObjectAttributes, FileObjectAttributes, 0, NULL);
|
||||
}
|
||||
|
||||
NTSTATUS
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue