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
bea945ee
Commit
bea945ee
authored
Apr 12, 2004
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
OpenServiceW: don't use the requested service access rights for the
registry key access rights, they are not the same thing.
parent
693a3cd0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
service.c
dlls/advapi32/service.c
+1
-2
No files found.
dlls/advapi32/service.c
View file @
bea945ee
...
...
@@ -400,8 +400,7 @@ OpenServiceW(SC_HANDLE hSCManager, LPCWSTR lpServiceName,
TRACE
(
"(%p,%p,%ld)
\n
"
,
hSCManager
,
lpServiceName
,
dwDesiredAccess
);
/* FIXME: dwDesiredAccess may need some processing */
r
=
RegOpenKeyExW
(
hSCManager
,
lpServiceName
,
0
,
dwDesiredAccess
,
&
hKey
);
r
=
RegOpenKeyExW
(
hSCManager
,
lpServiceName
,
0
,
KEY_ALL_ACCESS
,
&
hKey
);
if
(
r
!=
ERROR_SUCCESS
)
return
0
;
...
...
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