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
30c5f3bd
Commit
30c5f3bd
authored
Oct 04, 2015
by
André Hentschel
Committed by
Alexandre Julliard
Oct 05, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wineboot: Move a function call after a possible return.
Signed-off-by:
André Hentschel
<
nerv@dawncrow.de
>
parent
6f7dfe2c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
wineboot.c
programs/wineboot/wineboot.c
+2
-2
No files found.
programs/wineboot/wineboot.c
View file @
30c5f3bd
...
...
@@ -321,10 +321,10 @@ static void create_environment_registry_keys( void )
WCHAR
buffer
[
60
];
const
WCHAR
*
arch
;
NtQuerySystemInformation
(
SystemCpuInformation
,
&
sci
,
sizeof
(
sci
),
NULL
);
if
(
RegCreateKeyW
(
HKEY_LOCAL_MACHINE
,
EnvironW
,
&
env_key
))
return
;
NtQuerySystemInformation
(
SystemCpuInformation
,
&
sci
,
sizeof
(
sci
),
NULL
);
sprintfW
(
buffer
,
PercentDW
,
NtCurrentTeb
()
->
Peb
->
NumberOfProcessors
);
set_reg_value
(
env_key
,
NumProcW
,
buffer
);
...
...
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