vlc/vlc-1.1 | branch: master | Alexis Ballier <[email protected]> | Thu Dec 8 19:37:15 2011 -0300| [248d1f533acb4144f361db7ceb32b637f28f7cd7] | 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]> (cherry picked from commit 9b40c48c8aa69e71abb0263b1814ede7a370f7c9) > http://git.videolan.org/gitweb.cgi/vlc/vlc-1.1.git/?a=commit;h=248d1f533acb4144f361db7ceb32b637f28f7cd7 --- modules/misc/notify/xosd.c | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/modules/misc/notify/xosd.c b/modules/misc/notify/xosd.c index 2cea933..5241036 100644 --- a/modules/misc/notify/xosd.c +++ b/modules/misc/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> @@ -110,6 +111,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
