]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/xvag.c
speedhq: fix out-of-bounds write
[ffmpeg] / libavformat / xvag.c
index 5ef4fb0900304169d38c259a91eb85b34a8dc290..22e4f1e3c8748870bc89269ed87da0719001d76b 100644 (file)
@@ -20,6 +20,7 @@
  */
 
 #include "libavutil/bswap.h"
+#include "libavcodec/internal.h"
 #include "avformat.h"
 #include "internal.h"
 
@@ -68,7 +69,7 @@ static int xvag_read_header(AVFormatContext *s)
 
     if (st->codecpar->sample_rate <= 0)
         return AVERROR_INVALIDDATA;
-    if (st->codecpar->channels <= 0)
+    if (st->codecpar->channels <= 0 || st->codecpar->channels > FF_SANE_NB_CHANNELS)
         return AVERROR_INVALIDDATA;
 
     switch (codec) {