Commit e66a9360 authored by Gildas Bazin's avatar Gildas Bazin

* modules/video_output/x11/xcommon.c: fixed bug with uninitialized variable.

parent 6d400cab
......@@ -700,7 +700,7 @@ static int ManageVideo( vout_thread_t *p_vout )
FIND_ANYWHERE );
if( p_playlist != NULL )
{
vlc_value_t val;
vlc_value_t val; val.b_bool = VLC_TRUE;
var_Set( p_playlist, "intf-popupmenu", val );
vlc_object_release( p_playlist );
}
......
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