mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-08 13:22:53 +02:00
avcodec/hnm4video: check offset before subtraction in decode_interframe_v4a()
Fixes out of array read Fixes: signal_sigsegv_1326a09_1752_cov_245452111_GRTH301.HNS Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
8e36fc0c33
commit
4d7d9a5782
@ -311,8 +311,13 @@ static void decode_interframe_v4a(AVCodecContext *avctx, uint8_t *src,
|
|||||||
offset = writeoffset;
|
offset = writeoffset;
|
||||||
offset += bytestream2_get_le16(&gb);
|
offset += bytestream2_get_le16(&gb);
|
||||||
|
|
||||||
if (delta)
|
if (delta) {
|
||||||
|
if (offset < 0x10000) {
|
||||||
|
av_log(avctx, AV_LOG_ERROR, "Attempting to read out of bounds\n");
|
||||||
|
break;
|
||||||
|
}
|
||||||
offset -= 0x10000;
|
offset -= 0x10000;
|
||||||
|
}
|
||||||
|
|
||||||
if (offset + hnm->width + count >= hnm->width * hnm->height) {
|
if (offset + hnm->width + count >= hnm->width * hnm->height) {
|
||||||
av_log(avctx, AV_LOG_ERROR, "Attempting to read out of bounds\n");
|
av_log(avctx, AV_LOG_ERROR, "Attempting to read out of bounds\n");
|
||||||
|
Loading…
Reference in New Issue
Block a user