From 32efe6b4cd5ff0f3a2cf4588a10beb6cc9d7a7e6 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Kempf Date: Mon, 11 Aug 2008 09:51:07 -0700 Subject: [PATCH] Be sure to initialize the p_mi pointer to NULL. --- modules/gui/qt4/qt4.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/gui/qt4/qt4.cpp b/modules/gui/qt4/qt4.cpp index c2499215a4..89b223624a 100644 --- a/modules/gui/qt4/qt4.cpp +++ b/modules/gui/qt4/qt4.cpp @@ -239,6 +239,7 @@ static int Open( vlc_object_t *p_this ) memset( p_intf->p_sys, 0, sizeof( intf_sys_t ) ); p_intf->pf_run = Run; + p_intf->p_sys->p_mi = NULL; /* Access to the playlist */ p_intf->p_sys->p_playlist = pl_Yield( p_intf ); -- GitLab