Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
681637ab
Commit
681637ab
authored
Dec 22, 2007
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add an error message
parent
e59bea7b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
0 deletions
+4
-0
src/misc/objects.c
src/misc/objects.c
+3
-0
src/network/httpd.c
src/network/httpd.c
+1
-0
No files found.
src/misc/objects.c
View file @
681637ab
...
@@ -64,6 +64,7 @@
...
@@ -64,6 +64,7 @@
#else
#else
# include <io.h>
# include <io.h>
# include <fcntl.h>
# include <fcntl.h>
# include <errno.h>
/* ENOSYS */
#endif
#endif
/*****************************************************************************
/*****************************************************************************
...
@@ -493,6 +494,8 @@ int vlc_object_waitpipe( vlc_object_t *obj )
...
@@ -493,6 +494,8 @@ int vlc_object_waitpipe( vlc_object_t *obj )
#ifndef WIN32
#ifndef WIN32
if
(
pipe
(
pipes
)
)
if
(
pipe
(
pipes
)
)
#else
errno
=
ENOSYS
;
#endif
#endif
return
-
1
;
return
-
1
;
}
}
...
...
src/network/httpd.c
View file @
681637ab
...
@@ -1071,6 +1071,7 @@ httpd_host_t *httpd_TLSHostNew( vlc_object_t *p_this, const char *psz_hostname,
...
@@ -1071,6 +1071,7 @@ httpd_host_t *httpd_TLSHostNew( vlc_object_t *p_this, const char *psz_hostname,
vlc_object_lock
(
host
);
vlc_object_lock
(
host
);
if
(
vlc_object_waitpipe
(
VLC_OBJECT
(
host
)
)
==
-
1
)
if
(
vlc_object_waitpipe
(
VLC_OBJECT
(
host
)
)
==
-
1
)
{
{
msg_Err
(
host
,
"signaling pipe error: %m"
)
vlc_object_unlock
(
host
);
vlc_object_unlock
(
host
);
goto
error
;
goto
error
;
}
}
...
...
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