From 413c4eac043600c14f8d52382553f04a5c6980ad Mon Sep 17 00:00:00 2001 From: Derk-Jan Hartman Date: Thu, 9 Oct 2008 02:56:49 +0200 Subject: [PATCH] Fix NULL dereference (CID 254) A typo/copypaste error confusing p_es->p_dec with p_es->p_dec_record --- src/input/es_out.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/input/es_out.c b/src/input/es_out.c index a078323358..e9fda8a7b5 100644 --- a/src/input/es_out.c +++ b/src/input/es_out.c @@ -640,7 +640,7 @@ static void EsOutDecoderChangeDelay( es_out_t *out, es_out_id_t *p_es ) if( p_es->p_dec ) input_DecoderChangeDelay( p_es->p_dec, i_delay ); if( p_es->p_dec_record ) - input_DecoderChangeDelay( p_es->p_dec, i_delay ); + input_DecoderChangeDelay( p_es->p_dec_record, i_delay ); } } -- 2.39.2