]> git.sesse.net Git - vlc/commitdiff
* modules/video_output/x11/xcommon.c: fixed bug with uninitialized variable.
authorGildas Bazin <gbazin@videolan.org>
Sat, 8 May 2004 16:58:05 +0000 (16:58 +0000)
committerGildas Bazin <gbazin@videolan.org>
Sat, 8 May 2004 16:58:05 +0000 (16:58 +0000)
modules/video_output/x11/xcommon.c

index e8f3f9db8dc3663f4d635a2b0ae2450cacfb1654..8182e8dd1e19cc827f37e3a83cf0e17b7dc6c440 100644 (file)
@@ -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 );
                         }