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
ba372b92
Commit
ba372b92
authored
Oct 02, 2013
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Oct 04, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Make it possible to store FILE_APPEND_DATA access bit in the server fd cache.
parent
9b86c6a9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
server.c
dlls/ntdll/server.c
+3
-3
No files found.
dlls/ntdll/server.c
View file @
ba372b92
...
...
@@ -790,8 +790,8 @@ static int receive_fd( obj_handle_t *handle )
struct
fd_cache_entry
{
int
fd
;
enum
server_fd_type
type
:
6
;
unsigned
int
access
:
2
;
enum
server_fd_type
type
:
5
;
unsigned
int
access
:
3
;
unsigned
int
options
:
24
;
};
...
...
@@ -899,7 +899,7 @@ int server_get_unix_fd( HANDLE handle, unsigned int wanted_access, int *unix_fd,
*
unix_fd
=
-
1
;
*
needs_close
=
0
;
wanted_access
&=
FILE_READ_DATA
|
FILE_WRITE_DATA
;
wanted_access
&=
FILE_READ_DATA
|
FILE_WRITE_DATA
|
FILE_APPEND_DATA
;
server_enter_uninterrupted_section
(
&
fd_cache_section
,
&
sigset
);
...
...
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