mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-26 01:02:33 +00:00
alsdec: validate time diff index
If begin is smaller than t, the subtraction 'begin -= t' wraps around, because begin is unsigned. The same applies for end < t. This causes segmentation faults. Signed-off-by: Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
5cd2169344
commit
faf9fe2c22
@ -1290,8 +1290,16 @@ static int revert_channel_correlation(ALSDecContext *ctx, ALSBlockData *bd,
|
|||||||
|
|
||||||
if (ch[dep].time_diff_sign) {
|
if (ch[dep].time_diff_sign) {
|
||||||
t = -t;
|
t = -t;
|
||||||
|
if (t > 0 && begin < t) {
|
||||||
|
av_log(ctx->avctx, AV_LOG_ERROR, "begin %u smaller than time diff index %d.\n", begin, t);
|
||||||
|
return AVERROR_INVALIDDATA;
|
||||||
|
}
|
||||||
begin -= t;
|
begin -= t;
|
||||||
} else {
|
} else {
|
||||||
|
if (t > 0 && end < t) {
|
||||||
|
av_log(ctx->avctx, AV_LOG_ERROR, "end %u smaller than time diff index %d.\n", end, t);
|
||||||
|
return AVERROR_INVALIDDATA;
|
||||||
|
}
|
||||||
end -= t;
|
end -= t;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user