mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 22:36:33 +00:00
tcp: Remove dead assignment
This commit is contained in:
parent
66ce6200a8
commit
b2d716c340
1 changed files with 1 additions and 1 deletions
|
@ -241,7 +241,7 @@ gst_tcp_read_buffer (GstElement * this, int socket, GstPoll * fdset,
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ask how much is available for reading on the socket */
|
/* ask how much is available for reading on the socket */
|
||||||
if ((ret = ioctl (socket, FIONREAD, &readsize)) < 0)
|
if (ioctl (socket, FIONREAD, &readsize) < 0)
|
||||||
goto ioctl_error;
|
goto ioctl_error;
|
||||||
|
|
||||||
if (readsize == 0)
|
if (readsize == 0)
|
||||||
|
|
Loading…
Reference in a new issue