Commit 2baa8985 authored by Laurent Aimar's avatar Laurent Aimar

Fixed input clean up in case of sout error.

parent 2600c109
...@@ -1206,7 +1206,7 @@ static int Init( input_thread_t * p_input ) ...@@ -1206,7 +1206,7 @@ static int Init( input_thread_t * p_input )
InitStatistics( p_input ); InitStatistics( p_input );
#ifdef ENABLE_SOUT #ifdef ENABLE_SOUT
if( InitSout( p_input ) ) if( InitSout( p_input ) )
goto error_stats; goto error;
#endif #endif
/* Create es out */ /* Create es out */
...@@ -1299,9 +1299,6 @@ error: ...@@ -1299,9 +1299,6 @@ error:
input_resource_SetInput( p_input->p->p_resource, NULL ); input_resource_SetInput( p_input->p->p_resource, NULL );
} }
#ifdef ENABLE_SOUT
error_stats:
#endif
if( !p_input->b_preparsing && libvlc_stats( p_input ) ) if( !p_input->b_preparsing && libvlc_stats( p_input ) )
{ {
#define EXIT_COUNTER( c ) do { if( p_input->p->counters.p_##c ) \ #define EXIT_COUNTER( c ) do { if( p_input->p->counters.p_##c ) \
......
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