mirror of
https://github.com/mpv-player/mpv
synced 2025-03-11 08:37:59 +00:00
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
This commit is contained in:
parent
4feb891da7
commit
93f8320aec
13
subreader.c
13
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;
|
||||
|
Loading…
Reference in New Issue
Block a user