From: RĂ©mi Denis-Courmont Date: Thu, 5 Feb 2015 18:36:18 +0000 (+0200) Subject: pva: missing checks for I/O error X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=ce799fe39b9e9d34c1d2dd3421fe9a3b655e30aa;p=vlc pva: missing checks for I/O error --- diff --git a/modules/demux/pva.c b/modules/demux/pva.c index 0608644745..4c9db0e480 100644 --- a/modules/demux/pva.c +++ b/modules/demux/pva.c @@ -349,33 +349,30 @@ static int Control( demux_t *p_demux, int i_query, va_list args ) *****************************************************************************/ static int ReSynch( demux_t *p_demux ) { - const uint8_t *p_peek; - int i_skip; - int i_peek; - - while( vlc_object_alive (p_demux) ) + for( ;; ) { - if( ( i_peek = stream_Peek( p_demux->s, &p_peek, 1024 ) ) < 8 ) - { - return VLC_EGENERIC; - } - i_skip = 0; + const uint8_t *p_peek; + int i_peek = stream_Peek( p_demux->s, &p_peek, 1024 ); + if( i_peek < 8 ) + break; + + int i_skip = 0; while( i_skip < i_peek - 5 ) { if( p_peek[0] == 'A' && p_peek[1] == 'V' && p_peek[4] == 0x55 ) { - if( i_skip > 0 ) - { - stream_Read( p_demux->s, NULL, i_skip ); - } + if( i_skip > 0 + && stream_Read( p_demux->s, NULL, i_skip ) < i_skip ) + return VLC_EGENERIC; return VLC_SUCCESS; } p_peek++; i_skip++; } - stream_Read( p_demux->s, NULL, i_skip ); + if( stream_Read( p_demux->s, NULL, i_skip ) < i_skip ) + break; } return VLC_EGENERIC;