From 4a2819e147e4b8a999d47349d6420368950cd6a5 Mon Sep 17 00:00:00 2001 From: =?utf8?q?R=C3=A9mi=20Denis-Courmont?= Date: Wed, 13 Oct 2010 23:35:30 +0300 Subject: [PATCH] flag a bug p_demux value is not defined --- src/input/stream_demux.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/input/stream_demux.c b/src/input/stream_demux.c index b23857b83a..ac55d4c0e3 100644 --- a/src/input/stream_demux.c +++ b/src/input/stream_demux.c @@ -120,6 +120,7 @@ static void DStreamDelete( stream_t *s ) block_t *p_empty; vlc_object_kill( s ); +#warning FIXME: not thread-safe: if( p_sys->p_demux ) vlc_object_kill( p_sys->p_demux ); p_empty = block_New( s, 1 ); p_empty->i_buffer = 0; @@ -303,4 +304,3 @@ static void* DStreamThread( vlc_object_t* p_this ) vlc_object_kill( p_demux ); return NULL; } - -- 2.11.4.GIT