[vlc-devel] commit: Grmbl!!! ( Rémi Denis-Courmont )
git version control
git at videolan.org
Tue Dec 2 17:56:07 CET 2008
vlc | branch: 0.9-bugfix | Rémi Denis-Courmont <rdenis at simphalempin.com> | Tue Dec 2 18:55:39 2008 +0200| [a684d0267892b3cafed7cbf2ae8175a806bb547d] | committer: Rémi Denis-Courmont
Grmbl!!!
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=a684d0267892b3cafed7cbf2ae8175a806bb547d
---
modules/demux/real.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/modules/demux/real.c b/modules/demux/real.c
index cfadef2..84dde9b 100644
--- a/modules/demux/real.c
+++ b/modules/demux/real.c
@@ -925,7 +925,7 @@ static void ReadRealIndex( demux_t *p_demux )
msg_Dbg( p_demux, "Real Index : num : %d ", i_index_count );
- if( i_index_count > ( 0xffffffff / sizeof( rm_index_t ) ) )
+ if( i_index_count >= ( 0xffffffff / sizeof( rm_index_t ) ) )
return;
if( GetDWBE( &buffer[16] ) > 0 )
More information about the vlc-devel
mailing list