Mercurial > mplayer.hg
changeset 18903:58872b168da0
fixes 1000l bug that made MPlayer segfault when an overlaping edl line was found
author | reynaldo |
---|---|
date | Wed, 05 Jul 2006 06:39:39 +0000 |
parents | 8ea7d3506836 |
children | 64a5e75bb7f2 |
files | edl.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/edl.c Wed Jul 05 06:36:54 2006 +0000 +++ b/edl.c Wed Jul 05 06:39:39 2006 +0000 @@ -86,7 +86,7 @@ { 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)