Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
c93d7d1e
Commit
c93d7d1e
authored
Aug 25, 2004
by
Alex Villacís Lasso
Committed by
Alexandre Julliard
Aug 25, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Do not assume HKEY_CURRENT_USER/Environment exists ==> config file was
migrated. Instead test for every key to migrate under HKEY_CURRENT_USER/Environment.
parent
20b8b56d
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
28 additions
and
3 deletions
+28
-3
registry.c
misc/registry.c
+28
-3
No files found.
misc/registry.c
View file @
c93d7d1e
...
...
@@ -1861,6 +1861,7 @@ static void convert_environment( HKEY hkey_current_user )
static
const
WCHAR
windowsW
[]
=
{
'w'
,
'i'
,
'n'
,
'd'
,
'o'
,
'w'
,
's'
,
0
};
static
const
WCHAR
systemW
[]
=
{
's'
,
'y'
,
's'
,
't'
,
'e'
,
'm'
,
0
};
static
const
WCHAR
windirW
[]
=
{
'w'
,
'i'
,
'n'
,
'd'
,
'i'
,
'r'
,
0
};
static
const
WCHAR
systemrootW
[]
=
{
'S'
,
'y'
,
's'
,
't'
,
'e'
,
'm'
,
'r'
,
'o'
,
'o'
,
't'
,
0
};
static
const
WCHAR
winsysdirW
[]
=
{
'w'
,
'i'
,
'n'
,
's'
,
'y'
,
's'
,
'd'
,
'i'
,
'r'
,
0
};
static
const
WCHAR
envW
[]
=
{
'E'
,
'n'
,
'v'
,
'i'
,
'r'
,
'o'
,
'n'
,
'm'
,
'e'
,
'n'
,
't'
,
0
};
static
const
WCHAR
tempW
[]
=
{
'T'
,
'E'
,
'M'
,
'P'
,
0
};
...
...
@@ -1894,8 +1895,11 @@ static void convert_environment( HKEY hkey_current_user )
NtClose
(
hkey_old
);
return
;
}
if
(
disp
!=
REG_CREATED_NEW_KEY
)
goto
done
;
/* Test for existence of TEMP */
RtlInitUnicodeString
(
&
nameW
,
tempW
);
if
(
NtQueryValueKey
(
hkey_env
,
&
nameW
,
KeyValuePartialInformation
,
buffer
,
sizeof
(
buffer
),
&
dummy
))
{
/* convert TEMP */
RtlInitUnicodeString
(
&
nameW
,
tempW
);
if
(
!
NtQueryValueKey
(
hkey_old
,
&
nameW
,
KeyValuePartialInformation
,
buffer
,
sizeof
(
buffer
),
&
dummy
))
...
...
@@ -1906,7 +1910,12 @@ static void convert_environment( HKEY hkey_current_user )
MESSAGE
(
"Converted temp dir to new entry HKCU
\\
Environment
\"
TEMP
\"
= %s
\n
"
,
debugstr_w
(
(
WCHAR
*
)
info
->
Data
)
);
}
}
/* Test for existence of PATH */
RtlInitUnicodeString
(
&
nameW
,
pathW
);
if
(
NtQueryValueKey
(
hkey_env
,
&
nameW
,
KeyValuePartialInformation
,
buffer
,
sizeof
(
buffer
),
&
dummy
))
{
/* convert PATH */
RtlInitUnicodeString
(
&
nameW
,
pathW
);
if
(
!
NtQueryValueKey
(
hkey_old
,
&
nameW
,
KeyValuePartialInformation
,
buffer
,
sizeof
(
buffer
),
&
dummy
))
...
...
@@ -1915,7 +1924,12 @@ static void convert_environment( HKEY hkey_current_user )
MESSAGE
(
"Converted path dir to new entry HKCU
\\
Environment
\"
PATH
\"
= %s
\n
"
,
debugstr_w
(
(
WCHAR
*
)
info
->
Data
)
);
}
}
/* Test for existence of USERPROFILE */
RtlInitUnicodeString
(
&
nameW
,
userprofileW
);
if
(
NtQueryValueKey
(
hkey_env
,
&
nameW
,
KeyValuePartialInformation
,
buffer
,
sizeof
(
buffer
),
&
dummy
))
{
/* convert USERPROFILE */
RtlInitUnicodeString
(
&
nameW
,
profileW
);
if
(
!
NtQueryValueKey
(
hkey_old
,
&
nameW
,
KeyValuePartialInformation
,
buffer
,
sizeof
(
buffer
),
&
dummy
))
...
...
@@ -1925,17 +1939,29 @@ static void convert_environment( HKEY hkey_current_user )
MESSAGE
(
"Converted profile dir to new entry HKCU
\\
Environment
\"
USERPROFILE
\"
= %s
\n
"
,
debugstr_w
(
(
WCHAR
*
)
info
->
Data
)
);
}
}
/* Test for existence of windir */
RtlInitUnicodeString
(
&
nameW
,
windirW
);
if
(
NtQueryValueKey
(
hkey_env
,
&
nameW
,
KeyValuePartialInformation
,
buffer
,
sizeof
(
buffer
),
&
dummy
))
{
/* convert windir */
RtlInitUnicodeString
(
&
nameW
,
windowsW
);
if
(
!
NtQueryValueKey
(
hkey_old
,
&
nameW
,
KeyValuePartialInformation
,
buffer
,
sizeof
(
buffer
),
&
dummy
))
{
RtlInitUnicodeString
(
&
nameW
,
windirW
);
NtSetValueKey
(
hkey_env
,
&
nameW
,
0
,
info
->
Type
,
info
->
Data
,
info
->
DataLength
);
RtlInitUnicodeString
(
&
nameW
,
systemrootW
);
NtSetValueKey
(
hkey_env
,
&
nameW
,
0
,
info
->
Type
,
info
->
Data
,
info
->
DataLength
);
MESSAGE
(
"Converted windows dir to new entry HKCU
\\
Environment
\"
windir
\"
= %s
\n
"
,
debugstr_w
(
(
WCHAR
*
)
info
->
Data
)
);
}
}
/* Test for existence of winsysdir */
RtlInitUnicodeString
(
&
nameW
,
winsysdirW
);
if
(
NtQueryValueKey
(
hkey_env
,
&
nameW
,
KeyValuePartialInformation
,
buffer
,
sizeof
(
buffer
),
&
dummy
))
{
/* convert winsysdir */
RtlInitUnicodeString
(
&
nameW
,
systemW
);
if
(
!
NtQueryValueKey
(
hkey_old
,
&
nameW
,
KeyValuePartialInformation
,
buffer
,
sizeof
(
buffer
),
&
dummy
))
...
...
@@ -1945,8 +1971,7 @@ static void convert_environment( HKEY hkey_current_user )
MESSAGE
(
"Converted system dir to new entry HKCU
\\
Environment
\"
winsysdir
\"
= %s
\n
"
,
debugstr_w
(
(
WCHAR
*
)
info
->
Data
)
);
}
done:
}
NtClose
(
hkey_old
);
NtClose
(
hkey_env
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment