mirror of https://git.ffmpeg.org/ffmpeg.git
avcodec/h264_ps: Fix runtime error: signed integer overflow: -1094995528 * 2 cannot be represented in type 'int'
Fixes: 615/clusterfuzz-testcase-5488002644049920 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
258763ad0e
commit
59e5b05ef6
|
@ -468,7 +468,7 @@ int ff_h264_decode_seq_parameter_set(GetBitContext *gb, AVCodecContext *avctx,
|
|||
|
||||
sps->frame_mbs_only_flag = get_bits1(gb);
|
||||
|
||||
if (sps->mb_height >= INT_MAX / 2) {
|
||||
if (sps->mb_height >= INT_MAX / 2U) {
|
||||
av_log(avctx, AV_LOG_ERROR, "height overflow\n");
|
||||
goto fail;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue