wavpack: Fix an integer overflow

Integer Overflow Checker detected an integer
overflow while FATE was running.

See: http://fate.libav.org/x86_64-linux-ioc/

Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
Signed-off-by: Kostya Shishkov <kostya.shishkov@gmail.com>
pull/3/merge
Derek Buitenhuis 13 years ago committed by Kostya Shishkov
parent 36697be187
commit f604eab30a
  1. 2
      libavcodec/wavpack.c

@ -428,7 +428,7 @@ static float wv_get_value_float(WavpackFrameContext *s, uint32_t *crc, int S)
uint32_t u;
} value;
int sign;
unsigned int sign;
int exp = s->float_max_exp;
if (s->got_extra_bits) {

Loading…
Cancel
Save