[MPlayer-cvslog] r21014 - trunk/mplayer.c
reimar
subversion at mplayerhq.hu
Sat Nov 18 13:30:48 CET 2006
Author: reimar
Date: Sat Nov 18 13:30:48 2006
New Revision: 21014
Modified:
trunk/mplayer.c
Log:
reinit_video_chain might set sh_video = NULL, so check against that.
Modified: trunk/mplayer.c
==============================================================================
--- trunk/mplayer.c (original)
+++ trunk/mplayer.c Sat Nov 18 13:30:48 2006
@@ -4263,7 +4263,7 @@
if(!reinit_video_chain()) {
if(!video_out) goto goto_next_file;
- if(!sh_video->inited){
+ if(!sh_video || !sh_video->inited){
if(!sh_audio) goto goto_next_file;
goto main; // exit_player(MSGTR_Exit_error);
}
More information about the MPlayer-cvslog
mailing list