Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
53a3c77c
Commit
53a3c77c
authored
Aug 08, 2018
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Aug 14, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
userenv: Use the ARRAY_SIZE() macro.
Signed-off-by:
Michael Stefaniuc
<
mstefani@winehq.org
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
b2fc5917
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
userenv_main.c
dlls/userenv/userenv_main.c
+5
-5
No files found.
dlls/userenv/userenv_main.c
View file @
53a3c77c
...
...
@@ -106,20 +106,20 @@ static void set_registry_variables(WCHAR **env, HKEY hkey, DWORD type, BOOL set_
for
(
index
=
0
;
;
index
++
)
{
size
=
sizeof
(
name
)
/
sizeof
(
WCHAR
);
size
=
ARRAY_SIZE
(
name
);
ret
=
RegEnumValueW
(
hkey
,
index
,
name
,
&
size
,
NULL
,
NULL
,
NULL
,
NULL
);
if
(
ret
!=
ERROR_SUCCESS
)
break
;
if
(
!
memicmpW
(
name
,
SystemRootW
,
sizeof
(
SystemRootW
)
/
sizeof
(
WCHAR
)))
if
(
!
memicmpW
(
name
,
SystemRootW
,
ARRAY_SIZE
(
SystemRootW
)))
continue
;
if
(
!
memicmpW
(
name
,
SystemDriveW
,
sizeof
(
SystemDriveW
)
/
sizeof
(
WCHAR
)))
if
(
!
memicmpW
(
name
,
SystemDriveW
,
ARRAY_SIZE
(
SystemDriveW
)))
continue
;
RtlInitUnicodeString
(
&
us_name
,
name
);
us_value
.
Buffer
=
value
;
us_value
.
MaximumLength
=
sizeof
(
value
);
if
(
!
memicmpW
(
name
,
PATHW
,
sizeof
(
PATHW
)
/
sizeof
(
WCHAR
))
&&
if
(
!
memicmpW
(
name
,
PATHW
,
ARRAY_SIZE
(
PATHW
))
&&
!
RtlQueryEnvironmentVariable_U
(
*
env
,
&
us_name
,
&
us_value
))
{
if
(
!
set_path
)
...
...
@@ -339,7 +339,7 @@ BOOL WINAPI CreateEnvironmentBlock( LPVOID* lpEnvironment,
RegCloseKey
(
hkey
);
}
len
=
sizeof
(
buf
)
/
sizeof
(
WCHAR
);
len
=
ARRAY_SIZE
(
buf
);
if
(
GetComputerNameW
(
buf
,
&
len
))
{
RtlInitUnicodeString
(
&
us_name
,
COMPUTERNAMEW
);
...
...
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