[MPlayer-cvslog] r18908 - trunk/edl.c
reynaldo
subversion at mplayerhq.hu
Wed Jul 5 08:39:39 CEST 2006
Author: reynaldo
Date: Wed Jul 5 08:39:39 2006
New Revision: 18908
Modified:
trunk/edl.c
Log:
fixes 1000l bug that made MPlayer segfault when an overlaping edl line was found
Modified: trunk/edl.c
==============================================================================
--- trunk/edl.c (original)
+++ trunk/edl.c Wed Jul 5 08:39:39 2006
@@ -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)
More information about the MPlayer-cvslog
mailing list