vlc | branch: master | David Fuhrmann <[email protected]> | Thu Feb 
23 12:15:46 2012 +0100| [64ffbe934c7e3bd6452ef97062e3cd49f31e3e06] | committer: 
Jean-Baptiste Kempf

mkv: fix seek crash on osx

Close #6178

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=64ffbe934c7e3bd6452ef97062e3cd49f31e3e06
---

 modules/demux/mkv/matroska_segment.cpp |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/modules/demux/mkv/matroska_segment.cpp 
b/modules/demux/mkv/matroska_segment.cpp
index 528c2b3..8ed7a03 100644
--- a/modules/demux/mkv/matroska_segment.cpp
+++ b/modules/demux/mkv/matroska_segment.cpp
@@ -774,7 +774,8 @@ void matroska_segment_c::Seek( mtime_t i_date, mtime_t 
i_time_offset, int64_t i_
 
     /* now parse until key frame */
     const int es[3] = { VIDEO_ES, AUDIO_ES, SPU_ES };
-    for( int i = 0, i_cat = es[0]; i < 2; i_cat = es[++i] )
+    i_cat = es[0];
+    for( int i = 0; i < 2; i_cat = es[++i] )
     {
         for( i_track = 0; i_track < tracks.size(); i_track++ )
         {

_______________________________________________
vlc-commits mailing list
[email protected]
http://mailman.videolan.org/listinfo/vlc-commits

Reply via email to