From 01934100b7e643f0fa5b497f2b290f145648bef9 Mon Sep 17 00:00:00 2001 From: arpi Date: Tue, 13 Nov 2001 21:18:25 +0000 Subject: 11110001.txt find_sub sig11 fixed git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@2881 b3059339-0415-0410-9bf9-f77b7e298cf2 --- mplayer.c | 1 - subreader.c | 5 +++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/mplayer.c b/mplayer.c index da905e6b33..2f1cea7ef4 100644 --- a/mplayer.c +++ b/mplayer.c @@ -565,7 +565,6 @@ 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 (sub_num == 0) printf ("SUB: No subtitles found in %s\n",sub_name); if(!subtitles || sub_num == 0) mp_msg(MSGT_CPLAYER,MSGL_ERR,MSGTR_CantLoadSub,sub_name); } #endif diff --git a/subreader.c b/subreader.c index 85fc36e800..94e916890b 100644 --- a/subreader.c +++ b/subreader.c @@ -633,6 +633,11 @@ subtitle* sub_read_file (char *filename) { if (sub_errs) printf (", %i bad line(s).\n", sub_errs); else printf (".\n"); + if(sub_num<=0){ + free(first); + return NULL; + } + return first; } -- cgit v1.2.3