[vlc-commits] Avoid a crash if there are duplicated files in dir
Denis Charmet
git at videolan.org
Fri Feb 17 17:49:02 CET 2012
vlc/vlc-2.0 | branch: master | Denis Charmet <typx at dinauz.org> | Fri Feb 17 17:44:44 2012 +0100| [acf3b2974a684c8026eacafb3ca051f074bf50d3] | committer: Jean-Baptiste Kempf
Avoid a crash if there are duplicated files in dir
Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>
(cherry picked from commit 934582e46d03f2acdb39b170b161856c42db61b7)
Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>
> http://git.videolan.org/gitweb.cgi/vlc/vlc-2.0.git/?a=commit;h=acf3b2974a684c8026eacafb3ca051f074bf50d3
---
modules/demux/mkv/demux.cpp | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/modules/demux/mkv/demux.cpp b/modules/demux/mkv/demux.cpp
index f63d352..658dc31 100644
--- a/modules/demux/mkv/demux.cpp
+++ b/modules/demux/mkv/demux.cpp
@@ -528,10 +528,10 @@ matroska_stream_c *demux_sys_t::AnalyseAllSegmentsFound( demux_t *p_demux, EbmlS
{
KaxSegmentUID *p_uid = static_cast<KaxSegmentUID*>(l);
b_keep_segment = (FindSegment( *p_uid ) == NULL);
- if ( !b_keep_segment )
- break; // this segment is already known
delete p_segment1->p_segment_uid;
p_segment1->p_segment_uid = new KaxSegmentUID(*p_uid);
+ if ( !b_keep_segment )
+ break; // this segment is already known
}
else if( MKV_IS_ID( l, KaxPrevUID ) )
{
More information about the vlc-commits
mailing list