Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
4917f7f3
Commit
4917f7f3
authored
Oct 14, 2008
by
Jean-Paul Saman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert "Fix compilation for windows using mingw." it was not meant for committing either.
This reverts commit
9a8efe10
.
parent
53af46b7
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
5 deletions
+4
-5
modules/access/file.c
modules/access/file.c
+4
-5
No files found.
modules/access/file.c
View file @
4917f7f3
...
...
@@ -44,6 +44,9 @@
#ifdef HAVE_SYS_STAT_H
# include <sys/stat.h>
#endif
#ifdef HAVE_FCNTL_H
# include <fcntl.h>
#endif
#if defined( WIN32 ) && !defined( UNDER_CE )
# include <io.h>
...
...
@@ -53,10 +56,6 @@
# include <poll.h>
#endif
#ifdef HAVE_FCNTL_H
# include <fcntl.h>
#endif
#if defined( WIN32 ) && !defined( UNDER_CE )
# ifdef lseek
# undef lseek
...
...
@@ -382,7 +381,7 @@ static int open_file (access_t *p_access, const char *path)
return
-
1
;
}
# if defined(HAVE_FCNTL_H)
&& !defined( WIN32 )
# if defined(HAVE_FCNTL_H)
fcntl
(
fd
,
F_SETFD
,
fcntl
(
fd
,
F_GETFD
)
|
FD_CLOEXEC
);
/* We'd rather use any available memory for reading ahead
...
...
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