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
bf3c2a06
Commit
bf3c2a06
authored
Jul 19, 2011
by
Bernhard Loos
Committed by
Alexandre Julliard
Jul 20, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
server: Check for STATUS_OBJECT_TYPE_MISMATCH before STATUS_ACCESS_DENIED in get_handle_obj.
parent
872c07a9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
2 deletions
+7
-2
handle.c
server/handle.c
+7
-2
No files found.
server/handle.c
View file @
bf3c2a06
...
...
@@ -403,14 +403,19 @@ struct object *get_handle_obj( struct process *process, obj_handle_t handle,
set_error
(
STATUS_INVALID_HANDLE
);
return
NULL
;
}
obj
=
entry
->
ptr
;
if
(
ops
&&
(
obj
->
ops
!=
ops
))
{
set_error
(
STATUS_OBJECT_TYPE_MISMATCH
);
/* not the right type */
return
NULL
;
}
if
((
entry
->
access
&
access
)
!=
access
)
{
set_error
(
STATUS_ACCESS_DENIED
);
return
NULL
;
}
obj
=
entry
->
ptr
;
}
if
(
ops
&&
(
obj
->
ops
!=
ops
))
else
if
(
ops
&&
(
obj
->
ops
!=
ops
))
{
set_error
(
STATUS_OBJECT_TYPE_MISMATCH
);
/* not the right type */
return
NULL
;
...
...
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