Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
503b1ff7
Commit
503b1ff7
authored
Mar 25, 2013
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fail when calling vlc_pipe in Windows Store App mode
parent
620da472
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
src/win32/filesystem.c
src/win32/filesystem.c
+5
-0
No files found.
src/win32/filesystem.c
View file @
503b1ff7
...
@@ -240,7 +240,12 @@ int vlc_dup (int oldfd)
...
@@ -240,7 +240,12 @@ int vlc_dup (int oldfd)
int
vlc_pipe
(
int
fds
[
2
])
int
vlc_pipe
(
int
fds
[
2
])
{
{
#ifdef WINAPI_FAMILY_APP
_set_errno
(
EPERM
);
return
-
1
;
#else
return
_pipe
(
fds
,
32768
,
O_NOINHERIT
|
O_BINARY
);
return
_pipe
(
fds
,
32768
,
O_NOINHERIT
|
O_BINARY
);
#endif
}
}
#include <vlc_network.h>
#include <vlc_network.h>
...
...
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