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
627d2fa7
Commit
627d2fa7
authored
Mar 21, 2005
by
Ivan Leo Puoti
Committed by
Alexandre Julliard
Mar 21, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improve parameter checking in NtCreateFile.
Add documentation for ea_buffer and ea_length.
parent
9eead124
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
file.c
dlls/ntdll/file.c
+4
-2
No files found.
dlls/ntdll/file.c
View file @
627d2fa7
...
...
@@ -117,8 +117,8 @@ NTSTATUS WINAPI NtOpenFile( PHANDLE handle, ACCESS_MASK access,
* sharing [I] Type of shared access the caller would like to the file
* disposition [I] Specifies what to do, depending on whether the file already exists
* options [I] Options for creating a new file
* ea_buffer [I]
Undocumented
* ea_length [I]
Undocumented
* ea_buffer [I]
Pointer to a extended attributes buffer
* ea_length [I]
Length of ea_buffer
*
* RETURNS
* Success: 0. handle and io are updated.
...
...
@@ -139,6 +139,8 @@ NTSTATUS WINAPI NtCreateFile( PHANDLE handle, ACCESS_MASK access, POBJECT_ATTRIB
attr
->
RootDirectory
,
attr
->
SecurityDescriptor
,
io
,
alloc_size
,
attributes
,
sharing
,
disposition
,
options
,
ea_buffer
,
ea_length
);
if
(
!
attr
||
!
attr
->
ObjectName
)
return
STATUS_INVALID_PARAMETER
;
if
(
attr
->
RootDirectory
)
{
FIXME
(
"RootDirectory %p not supported
\n
"
,
attr
->
RootDirectory
);
...
...
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