mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-26 09:12:33 +00:00
avcodec/mpegaudiodec_template: Make l3_unscale() work with e=0
Fixes undefined behavior Fixes: 830/clusterfuzz-testcase-6253175327686656 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
108b02e547
commit
8ebed703f1
@ -253,7 +253,7 @@ static inline int l3_unscale(int value, int exponent)
|
||||
#endif
|
||||
if (e > (SUINT)31)
|
||||
return 0;
|
||||
m = (m + (1 << (e - 1))) >> e;
|
||||
m = (m + ((1U << e)>>1)) >> e;
|
||||
|
||||
return m;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user