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
bd6eaf91
Commit
bd6eaf91
authored
Jun 03, 2015
by
Piotr Caban
Committed by
Alexandre Julliard
Jun 03, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Get rid of msvcrt_is_valid_fd helper.
parent
9ce2a8a6
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
6 deletions
+1
-6
file.c
dlls/msvcrt/file.c
+1
-6
No files found.
dlls/msvcrt/file.c
View file @
bd6eaf91
...
...
@@ -304,11 +304,6 @@ static inline MSVCRT_FILE* msvcrt_get_file(int i)
return
&
ret
->
file
;
}
static
inline
BOOL
msvcrt_is_valid_fd
(
int
fd
)
{
return
fd
>=
0
&&
fd
<
MSVCRT_fdend
&&
(
get_ioinfo_nolock
(
fd
)
->
wxflag
&
WX_OPEN
);
}
/* INTERNAL: free a file entry fd */
static
void
msvcrt_free_fd
(
int
fd
)
{
...
...
@@ -454,7 +449,7 @@ static MSVCRT_FILE* msvcrt_alloc_fp(void)
static
int
msvcrt_init_fp
(
MSVCRT_FILE
*
file
,
int
fd
,
unsigned
stream_flags
)
{
TRACE
(
":fd (%d) allocating FILE*
\n
"
,
fd
);
if
(
!
msvcrt_is_valid_fd
(
fd
))
if
(
!
(
get_ioinfo_nolock
(
fd
)
->
wxflag
&
WX_OPEN
))
{
WARN
(
":invalid fd %d
\n
"
,
fd
);
*
MSVCRT___doserrno
()
=
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