tcp: Remove dead assignment

This commit is contained in:
Sebastian Dröge 2010-10-31 19:14:27 +01:00
parent 66ce6200a8
commit b2d716c340

View file

@ -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)