Commit 69d572ca authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

prevent #1312 from occuring (refs #1312)

parent fed486eb
......@@ -96,6 +96,13 @@ static int Open( vlc_object_t *p_this )
sout_stream_t *p_stream = (sout_stream_t*)p_this;
sout_stream_sys_t *p_sys;
/* FIXME: this sucks big time (see #1312) */
if( var_CreateGetBool( p_stream, "sout-keep" ) )
{
msg_Err( p_stream, "cannot use #display sout with sout-keep option" );
return VLC_EGENERIC;
}
p_sys = malloc( sizeof( sout_stream_sys_t ) );
if( p_sys == NULL )
return VLC_ENOMEM;
......
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