tcp: Remove dead assignment
This commit is contained in:
parent
66ce6200a8
commit
b2d716c340
@ -241,7 +241,7 @@ gst_tcp_read_buffer (GstElement * this, int socket, GstPoll * fdset,
|
||||
}
|
||||
|
||||
/* 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;
|
||||
|
||||
if (readsize == 0)
|
||||
|
Loading…
x
Reference in New Issue
Block a user