mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-02 17:43:44 +00:00
ntdll: Add missing backslash to query image file execution options.
This commit is contained in:
parent
d289dfc2c0
commit
a5463c88e2
1 changed files with 3 additions and 3 deletions
|
@ -3599,7 +3599,7 @@ static NTSTATUS query_string_option( HANDLE hkey, LPCWSTR name, ULONG type,
|
||||||
NTSTATUS WINAPI LdrQueryImageFileExecutionOptions( const UNICODE_STRING *key, LPCWSTR value, ULONG type,
|
NTSTATUS WINAPI LdrQueryImageFileExecutionOptions( const UNICODE_STRING *key, LPCWSTR value, ULONG type,
|
||||||
void *data, ULONG in_size, ULONG *out_size )
|
void *data, ULONG in_size, ULONG *out_size )
|
||||||
{
|
{
|
||||||
static const WCHAR optionsW[] = L"\\Registry\\Machine\\Software\\Microsoft\\Windows NT\\CurrentVersion\\Image File Execution Options";
|
static const WCHAR optionsW[] = L"\\Registry\\Machine\\Software\\Microsoft\\Windows NT\\CurrentVersion\\Image File Execution Options\\";
|
||||||
WCHAR path[MAX_PATH + ARRAY_SIZE( optionsW )];
|
WCHAR path[MAX_PATH + ARRAY_SIZE( optionsW )];
|
||||||
OBJECT_ATTRIBUTES attr;
|
OBJECT_ATTRIBUTES attr;
|
||||||
UNICODE_STRING name_str;
|
UNICODE_STRING name_str;
|
||||||
|
@ -3619,10 +3619,10 @@ NTSTATUS WINAPI LdrQueryImageFileExecutionOptions( const UNICODE_STRING *key, LP
|
||||||
while (p > key->Buffer && p[-1] != '\\') p--;
|
while (p > key->Buffer && p[-1] != '\\') p--;
|
||||||
len = key->Length - (p - key->Buffer) * sizeof(WCHAR);
|
len = key->Length - (p - key->Buffer) * sizeof(WCHAR);
|
||||||
name_str.Buffer = path;
|
name_str.Buffer = path;
|
||||||
name_str.Length = sizeof(optionsW) + len;
|
name_str.Length = sizeof(optionsW) - sizeof(WCHAR) + len;
|
||||||
name_str.MaximumLength = name_str.Length;
|
name_str.MaximumLength = name_str.Length;
|
||||||
memcpy( path, optionsW, sizeof(optionsW) );
|
memcpy( path, optionsW, sizeof(optionsW) );
|
||||||
memcpy( path + ARRAY_SIZE( optionsW ), p, len );
|
memcpy( path + ARRAY_SIZE( optionsW ) - 1, p, len );
|
||||||
if ((status = NtOpenKey( &hkey, KEY_QUERY_VALUE, &attr ))) return status;
|
if ((status = NtOpenKey( &hkey, KEY_QUERY_VALUE, &attr ))) return status;
|
||||||
|
|
||||||
if (type == REG_DWORD)
|
if (type == REG_DWORD)
|
||||||
|
|
Loading…
Reference in a new issue