From b8525bc7b21f2e2dce05c94077c4c555068b9ea2 Mon Sep 17 00:00:00 2001 From: Laurent Aimar Date: Tue, 18 Nov 2008 00:09:43 +0100 Subject: [PATCH] Fixed a segfault in ES_OUT_GET_ES_STATE (typo). --- src/input/es_out_timeshift.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/input/es_out_timeshift.c b/src/input/es_out_timeshift.c index e984810a40..d8327f391d 100644 --- a/src/input/es_out_timeshift.c +++ b/src/input/es_out_timeshift.c @@ -618,7 +618,7 @@ static int ControlLocked( es_out_t *p_out, int i_query, va_list args ) *pb_enabled = true; return VLC_SUCCESS; } - return es_out_Control( p_sys->p_out, ES_OUT_GET_ES_STATE, p_es, pb_enabled ); + return es_out_Control( p_sys->p_out, ES_OUT_GET_ES_STATE, p_es->p_es, pb_enabled ); } /* Special internal input control */ -- 2.39.2