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

dshow: remove impossible case

parent b7e0d3cc
...@@ -1708,7 +1708,7 @@ static block_t *ReadCompressed( access_t *p_access ) ...@@ -1708,7 +1708,7 @@ static block_t *ReadCompressed( access_t *p_access )
while( 1 ) while( 1 )
{ {
if( !vlc_object_alive (p_access) || p_access->b_error ) return 0; if( !vlc_object_alive (p_access) ) return NULL;
/* Get new sample/frame from the elementary stream (blocking). */ /* Get new sample/frame from the elementary stream (blocking). */
vlc_mutex_lock( &p_sys->lock ); vlc_mutex_lock( &p_sys->lock );
......
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