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
27d31a5d
Commit
27d31a5d
authored
Apr 16, 2000
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed permission checks in create_key and delete_key. It seems
Windows doesn't check anything.
parent
c775e1ec
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
registry.c
server/registry.c
+2
-2
No files found.
server/registry.c
View file @
27d31a5d
...
...
@@ -1509,7 +1509,7 @@ DECL_HANDLER(create_key)
if
(
access
&
MAXIMUM_ALLOWED
)
access
=
KEY_ALL_ACCESS
;
/* FIXME: needs general solution */
req
->
hkey
=
-
1
;
if
((
parent
=
get_hkey_obj
(
req
->
parent
,
KEY_CREATE_SUB_KEY
)))
if
((
parent
=
get_hkey_obj
(
req
->
parent
,
0
/*FIXME*/
)))
{
if
((
class
=
req_strdupW
(
req
,
req
->
class
)))
{
...
...
@@ -1549,7 +1549,7 @@ DECL_HANDLER(delete_key)
{
struct
key
*
key
;
if
((
key
=
get_hkey_obj
(
req
->
hkey
,
KEY_CREATE_SUB_KEY
/*FIXME*/
)))
if
((
key
=
get_hkey_obj
(
req
->
hkey
,
0
/*FIXME*/
)))
{
delete_key
(
key
,
req
->
name
,
sizeof
(
req
->
name
)
);
release_object
(
key
);
...
...
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