Commit 95144fb3 authored by Gildas Bazin's avatar Gildas Bazin

* src/video_output/video_output.c: fixed potential segfault.
* configure.ac: don't bail out if matroska headers are not found.
parent 7528b843
dnl Autoconf settings for vlc dnl Autoconf settings for vlc
dnl $Id: configure.ac,v 1.46 2003/07/29 17:42:58 gbazin Exp $ dnl $Id: configure.ac,v 1.47 2003/07/29 22:20:53 gbazin Exp $
AC_INIT(vlc,0.6.1) AC_INIT(vlc,0.6.1)
...@@ -1418,8 +1418,6 @@ AC_LANG_PUSH(C++) ...@@ -1418,8 +1418,6 @@ AC_LANG_PUSH(C++)
],[ ],[
AX_ADD_LDFLAGS([mkv],[-lmatroska -lebml]) AX_ADD_LDFLAGS([mkv],[-lmatroska -lebml])
]) ])
],[
AC_MSG_ERROR([libebml or libmatroska include files not found])
]) ])
CPPFLAGS="${CPPFLAGS_save}" CPPFLAGS="${CPPFLAGS_save}"
AC_LANG_POP(C++) AC_LANG_POP(C++)
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
* thread, and destroy a previously oppened video output thread. * thread, and destroy a previously oppened video output thread.
***************************************************************************** *****************************************************************************
* Copyright (C) 2000-2001 VideoLAN * Copyright (C) 2000-2001 VideoLAN
* $Id: video_output.c,v 1.230 2003/07/23 22:01:25 gbazin Exp $ * $Id: video_output.c,v 1.231 2003/07/29 22:20:53 gbazin Exp $
* *
* Authors: Vincent Seguin <seguin@via.ecp.fr> * Authors: Vincent Seguin <seguin@via.ecp.fr>
* *
...@@ -394,6 +394,7 @@ vout_thread_t * __vout_Create( vlc_object_t *p_parent, ...@@ -394,6 +394,7 @@ vout_thread_t * __vout_Create( vlc_object_t *p_parent,
vlc_object_destroy( p_vout ); vlc_object_destroy( p_vout );
return NULL; return NULL;
} }
p_vout->p_text_renderer_module = module_Need( p_vout, "text renderer", p_vout->p_text_renderer_module = module_Need( p_vout, "text renderer",
NULL ); NULL );
if( p_vout->p_text_renderer_module == NULL ) if( p_vout->p_text_renderer_module == NULL )
...@@ -401,6 +402,7 @@ vout_thread_t * __vout_Create( vlc_object_t *p_parent, ...@@ -401,6 +402,7 @@ vout_thread_t * __vout_Create( vlc_object_t *p_parent,
msg_Warn( p_vout, "no suitable text renderer module" ); msg_Warn( p_vout, "no suitable text renderer module" );
p_vout->pf_add_string = NULL; p_vout->pf_add_string = NULL;
} }
/* Create a few object variables for interface interaction */ /* Create a few object variables for interface interaction */
var_Create( p_vout, "fullscreen", VLC_VAR_BOOL ); var_Create( p_vout, "fullscreen", VLC_VAR_BOOL );
text.psz_string = _("Fullscreen"); text.psz_string = _("Fullscreen");
...@@ -1048,6 +1050,7 @@ static void EndThread( vout_thread_t *p_vout ) ...@@ -1048,6 +1050,7 @@ static void EndThread( vout_thread_t *p_vout )
} }
} }
if( p_vout->p_text_renderer_module )
module_Unneed( p_vout, p_vout->p_text_renderer_module ); module_Unneed( p_vout, p_vout->p_text_renderer_module );
/* Destroy translation tables */ /* Destroy translation tables */
......
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