fixes 1000l bug that made MPlayer segfault when an overlaping edl line was found

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18908 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
reynaldo 2006-07-05 06:39:39 +00:00
parent c6ddc4ae6c
commit 31e90a9aae
1 changed files with 1 additions and 1 deletions

2
edl.c
View File

@ -86,7 +86,7 @@ edl_record_ptr edl_parse_file(void)
{
mp_msg(MSGT_CPLAYER, MSGL_WARN, MSGTR_EdlNOValidLine, line);
mp_msg(MSGT_CPLAYER, MSGL_WARN, MSGTR_EdlBadLineOverlap,
next_edl_record->prev->stop_sec, start);
next_edl_record->stop_sec, start);
continue;
}
if (stop <= start)