wmadec: avoid infinit loop.

Fixes ticket183

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
pull/2/head
Michael Niedermayer 14 years ago
parent a13fec8a9c
commit eb97d4d611
  1. 2
      libavcodec/wmadec.c

@ -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;

Loading…
Cancel
Save