OSDN Git Service

avutil/softfloat: Fix multiple runtime error: left shift of negative value -8
authorMichael Niedermayer <michael@niedermayer.cc>
Fri, 5 May 2017 22:13:05 +0000 (00:13 +0200)
committerMichael Niedermayer <michael@niedermayer.cc>
Fri, 5 May 2017 22:33:19 +0000 (00:33 +0200)
Fixes: 1352/clusterfuzz-testcase-minimized-5757565017260032

Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
libavutil/softfloat.h

index e6d30ad..5d376e4 100644 (file)
@@ -234,12 +234,12 @@ static av_unused void av_sincos_sf(int a, int *s, int *c)
     int st, ct;
 
     idx = a >> 26;
-    sign = (idx << 27) >> 31;
+    sign = (int32_t)((unsigned)idx << 27) >> 31;
     cv = av_costbl_1_sf[idx & 0xf];
     cv = (cv ^ sign) - sign;
 
     idx -= 8;
-    sign = (idx << 27) >> 31;
+    sign = (int32_t)((unsigned)idx << 27) >> 31;
     sv = av_costbl_1_sf[idx & 0xf];
     sv = (sv ^ sign) - sign;