Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2021-06-03 23:26:41 +0300
committerMichael Niedermayer <michael@niedermayer.cc>2021-10-06 14:56:53 +0300
commit261e06947edc8c57a64f46146f90599f876b1668 (patch)
tree1b0f93aa1a19431d21a99dff60bccbfd472a3add /libavformat
parent78706c08d98157e213f40012e05aec7b29b82469 (diff)
avformat/jacosubdec: Check for min in t overflow in get_shift()
Fixes: negation of -2147483648 cannot be represented in type 'int'; cast to an unsigned type to negate this value to itself Fixes: 34651/clusterfuzz-testcase-minimized-ffmpeg_dem_JACOSUB_fuzzer-5157941012463616 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> (cherry picked from commit 989febfbd0c986e9e3e0f269a6b22778bf79147b) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/jacosubdec.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/libavformat/jacosubdec.c b/libavformat/jacosubdec.c
index c3cfc2f27e..2684b6d9bb 100644
--- a/libavformat/jacosubdec.c
+++ b/libavformat/jacosubdec.c
@@ -141,6 +141,9 @@ static int get_shift(int timeres, const char *buf)
int n = sscanf(buf, "%d"SSEP"%d"SSEP"%d"SSEP"%d", &a, &b, &c, &d);
#undef SSEP
+ if (a == INT_MIN)
+ return 0;
+
if (*buf == '-' || a < 0) {
sign = -1;
a = FFABS(a);