Fixed segfault if 0 subtitle found in a file.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@2492 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
laaz 2001-10-26 20:48:22 +00:00
parent 90adf4b530
commit fe5782c1ce
1 changed files with 2 additions and 1 deletions

View File

@ -607,7 +607,8 @@ if(!parse_codec_cfg(get_path("codecs.conf"))){
||(0==strcmp(&sub_name[l-4],".UTF"))))
sub_utf8=1;
subtitles=sub_read_file(sub_name);
if(!subtitles) mp_msg(MSGT_CPLAYER,MSGL_ERR,MSGTR_CantLoadSub,sub_name);
if (sub_num == 0) printf ("No subtitles found in %s\n",sub_name);
if(!subtitles || sub_num == 0) mp_msg(MSGT_CPLAYER,MSGL_ERR,MSGTR_CantLoadSub,sub_name);
}
#endif