wav: Add check for 'fmt' tag in SMV code

If there is a 'SMV0' tag, but no 'fmt' tag, it is possible that
'st' got used as NULL.

Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
pull/28/head
Derek Buitenhuis 13 years ago
parent 4f4eb380f0
commit 5ab855777d
  1. 4
      libavformat/wav.c

@ -480,6 +480,10 @@ static int wav_read_header(AVFormatContext *s)
return ret; return ret;
break; break;
case MKTAG('S','M','V','0'): case MKTAG('S','M','V','0'):
if (!got_fmt) {
av_log(s, AV_LOG_ERROR, "found no 'fmt ' tag before the 'SMV0' tag\n");
return AVERROR_INVALIDDATA;
}
// SMV file, a wav file with video appended. // SMV file, a wav file with video appended.
if (size != MKTAG('0','2','0','0')) { if (size != MKTAG('0','2','0','0')) {
av_log(s, AV_LOG_ERROR, "Unknown SMV version found\n"); av_log(s, AV_LOG_ERROR, "Unknown SMV version found\n");

Loading…
Cancel
Save