From 93f8320aec6e7aa546883ff6cf36039e4e6f4aa5 Mon Sep 17 00:00:00 2001 From: alex Date: Sun, 27 Jul 2003 22:23:07 +0000 Subject: fix against dummy solaris sprintf, bug reported by Gotz Waschk git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10487 b3059339-0415-0410-9bf9-f77b7e298cf2 --- subreader.c | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) (limited to 'subreader.c') diff --git a/subreader.c b/subreader.c index 3e462d7a97..f23b57baff 100644 --- a/subreader.c +++ b/subreader.c @@ -1694,10 +1694,15 @@ char** sub_filenames(char* path, char *fname) // we have a (likely) subtitle file if (found) { int prio = 0; - sprintf(tmpresult, "%s %s", f_fname_trim, tmp_sub_id); - if (strcmp(tmp_fname_trim, tmpresult) == 0 && sub_match_fuzziness >= 1) { - // matches the movie name + lang extension - prio = 5; + if (tmp_sub_id) + { + sprintf(tmpresult, "%s %s", f_fname_trim, tmp_sub_id); + printf("dvdsublang...%s\n", tmpresult); + if (strcmp(tmp_fname_trim, tmpresult) == 0 && sub_match_fuzziness >= 1) { + // matches the movie name + lang extension + prio = 5; + break; + } } else if (strcmp(tmp_fname_trim, f_fname_trim) == 0) { // matches the movie name prio = 4; -- cgit v1.2.3