Commit 926f43ab authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

stream_demux: remove dead code

parent acd197a3
...@@ -185,11 +185,6 @@ static ssize_t DStreamRead( stream_t *s, void *buf, size_t len ) ...@@ -185,11 +185,6 @@ static ssize_t DStreamRead( stream_t *s, void *buf, size_t len )
if( block == NULL ) if( block == NULL )
{ {
block = block_FifoGet( sys->p_fifo ); block = block_FifoGet( sys->p_fifo );
if( block == NULL )
{
s->b_error = true;
return -1;
}
sys->p_block = block; sys->p_block = block;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment