vlc | branch: master | Alexis Ballier <[email protected]> | Thu Dec  8 
19:37:15 2011 -0300| [9b40c48c8aa69e71abb0263b1814ede7a370f7c9] | committer: 
Rémi Denis-Courmont

xosd: call vlc_xlib_init first

See: https://bugs.gentoo.org/show_bug.cgi?id=393439

Signed-off-by: Rémi Denis-Courmont <[email protected]>

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=9b40c48c8aa69e71abb0263b1814ede7a370f7c9
---

 modules/notify/xosd.c |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/modules/notify/xosd.c b/modules/notify/xosd.c
index a87d7ae..df47323 100644
--- a/modules/notify/xosd.c
+++ b/modules/notify/xosd.c
@@ -34,6 +34,7 @@
 #include <vlc_playlist.h>
 #include <vlc_input.h>
 #include <vlc_interface.h>
+#include <vlc_xlib.h>
 
 #include <xosd.h>
 
@@ -109,6 +110,9 @@ static int Open( vlc_object_t *p_this )
     xosd *p_osd;
     char *psz_font, *psz_colour;
 
+    if (!vlc_xlib_init(p_this))
+        return VLC_EGENERIC;
+
     if( getenv( "DISPLAY" ) == NULL )
     {
         msg_Err( p_intf, "no display, please set the DISPLAY variable" );

_______________________________________________
vlc-commits mailing list
[email protected]
http://mailman.videolan.org/listinfo/vlc-commits

Reply via email to