Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gst-plugins-base
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
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
Seungha Yang
gst-plugins-base
Commits
a90adcca
Commit
a90adcca
authored
Apr 12, 2011
by
Tim-Philipp Müller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
multifdsink: do check return values of fcntl() and fstat()
https://bugzilla.gnome.org/show_bug.cgi?id=647294
parent
bf2b14f8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
+6
-3
gst/tcp/gstmultifdsink.c
gst/tcp/gstmultifdsink.c
+6
-3
No files found.
gst/tcp/gstmultifdsink.c
View file @
a90adcca
...
...
@@ -876,7 +876,11 @@ gst_multi_fd_sink_add_full (GstMultiFdSink * sink, int fd,
sink
->
clients_cookie
++
;
/* set the socket to non blocking */
fcntl
(
fd
,
F_SETFL
,
O_NONBLOCK
);
if
(
fcntl
(
fd
,
F_SETFL
,
O_NONBLOCK
)
<
0
)
{
GST_ERROR_OBJECT
(
sink
,
"failed to make socket %d non-blocking: %s"
,
fd
,
g_strerror
(
errno
));
}
/* we always read from a client */
gst_poll_add_fd
(
sink
->
fdset
,
&
client
->
fd
);
...
...
@@ -888,8 +892,7 @@ gst_multi_fd_sink_add_full (GstMultiFdSink * sink, int fd,
}
}
/* figure out the mode, can't use send() for non sockets */
fstat
(
fd
,
&
statbuf
);
if
(
S_ISSOCK
(
statbuf
.
st_mode
))
{
if
(
fstat
(
fd
,
&
statbuf
)
==
0
&&
S_ISSOCK
(
statbuf
.
st_mode
))
{
client
->
is_socket
=
TRUE
;
setup_dscp_client
(
sink
,
client
);
}
...
...
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