[vlc-commits] packetizer: mpeg4video: fix oob read

Francois Cartegnie git at videolan.org
Mon Feb 19 14:15:44 CET 2018


vlc | branch: master | Francois Cartegnie <fcvlcdev at free.fr> | Mon Feb 19 14:13:26 2018 +0100| [074f326104b8ddbdf9ad8ad8da120322271af112] | committer: Francois Cartegnie

packetizer: mpeg4video: fix oob read

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

 modules/packetizer/mpeg4video.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/modules/packetizer/mpeg4video.c b/modules/packetizer/mpeg4video.c
index 1c33a3d02f..8b26ed557d 100644
--- a/modules/packetizer/mpeg4video.c
+++ b/modules/packetizer/mpeg4video.c
@@ -362,11 +362,13 @@ static int ParseVOL( decoder_t *p_dec, es_format_t *fmt,
 
     for( ;; )
     {
+        if( i_vol <= 5 )
+            return VLC_EGENERIC;
+
         if( p_vol[0] == 0x00 && p_vol[1] == 0x00 && p_vol[2] == 0x01 &&
             p_vol[3] >= 0x20 && p_vol[3] <= 0x2f ) break;
 
         p_vol++; i_vol--;
-        if( i_vol <= 4 ) return VLC_EGENERIC;
     }
 
     bs_init( &s, &p_vol[4], i_vol - 4 );



More information about the vlc-commits mailing list