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
3c53e06b
Commit
3c53e06b
authored
May 08, 2019
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
userenv: Use strncmpiW instead of memicmpW for strings without embedded nulls.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
1dd25f2d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
5 deletions
+3
-5
userenv_main.c
dlls/userenv/userenv_main.c
+3
-5
No files found.
dlls/userenv/userenv_main.c
View file @
3c53e06b
...
...
@@ -111,15 +111,13 @@ static void set_registry_variables(WCHAR **env, HKEY hkey, DWORD type, BOOL set_
if
(
ret
!=
ERROR_SUCCESS
)
break
;
if
(
!
memicmpW
(
name
,
SystemRootW
,
ARRAY_SIZE
(
SystemRootW
)))
continue
;
if
(
!
memicmpW
(
name
,
SystemDriveW
,
ARRAY_SIZE
(
SystemDriveW
)))
continue
;
if
(
!
strcmpiW
(
name
,
SystemRootW
))
continue
;
if
(
!
strcmpiW
(
name
,
SystemDriveW
))
continue
;
RtlInitUnicodeString
(
&
us_name
,
name
);
us_value
.
Buffer
=
value
;
us_value
.
MaximumLength
=
sizeof
(
value
);
if
(
!
memicmp
W
(
name
,
PATHW
,
ARRAY_SIZE
(
PATHW
))
&&
if
(
!
strncmpi
W
(
name
,
PATHW
,
ARRAY_SIZE
(
PATHW
))
&&
!
RtlQueryEnvironmentVariable_U
(
*
env
,
&
us_name
,
&
us_value
))
{
if
(
!
set_path
)
...
...
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