mirror of
https://github.com/mpv-player/mpv
synced 2024-12-15 11:25:10 +00:00
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:
parent
90adf4b530
commit
fe5782c1ce
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user