[vlc-devel] commit: Fixed a segfault in ES_OUT_GET_ES_STATE (typo). (Laurent Aimar )

git version control git at videolan.org
Tue Nov 18 00:10:37 CET 2008


vlc | branch: master | Laurent Aimar <fenrir at videolan.org> | Tue Nov 18 00:09:43 2008 +0100| [b8525bc7b21f2e2dce05c94077c4c555068b9ea2] | committer: Laurent Aimar 

Fixed a segfault in ES_OUT_GET_ES_STATE (typo).

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=b8525bc7b21f2e2dce05c94077c4c555068b9ea2
---

 src/input/es_out_timeshift.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/input/es_out_timeshift.c b/src/input/es_out_timeshift.c
index e984810..d8327f3 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 */




More information about the vlc-devel mailing list