wmadec: avoid infinit loop.

Fixes ticket183

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2011-05-22 02:33:03 +02:00
parent a13fec8a9c
commit eb97d4d611
1 changed files with 1 additions and 1 deletions

View File

@ -827,7 +827,7 @@ static int wma_decode_superframe(AVCodecContext *avctx,
return 0;
}
if (buf_size < s->block_align)
return 0;
return AVERROR(EINVAL);
buf_size = s->block_align;
samples = data;