Commit 5001b70b authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

stream: remove tautology

p_current cannot be NULL.
parent ad22a4a4
...@@ -776,16 +776,13 @@ static int AStreamReadBlock( stream_t *s, void *p_read, unsigned int i_read ) ...@@ -776,16 +776,13 @@ static int AStreamReadBlock( stream_t *s, void *p_read, unsigned int i_read )
if( p_sys->block.i_offset >= p_sys->block.p_current->i_buffer ) if( p_sys->block.i_offset >= p_sys->block.p_current->i_buffer )
{ {
/* Current block is now empty, switch to next */ /* Current block is now empty, switch to next */
if( p_sys->block.p_current ) p_sys->block.i_offset = 0;
{ p_sys->block.p_current = p_sys->block.p_current->p_next;
p_sys->block.i_offset = 0;
p_sys->block.p_current = p_sys->block.p_current->p_next;
}
/*Get a new block if needed */ /*Get a new block if needed */
if( !p_sys->block.p_current && AStreamRefillBlock( s ) ) if( !p_sys->block.p_current && AStreamRefillBlock( s ) )
{
break; break;
} assert( p_sys->block.p_current );
} }
} }
......
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