mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-03-07 21:17:58 +00:00
dfa: Fix out of array write in decode_dds1()
Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
d1c95d2ce3
commit
72b9537d88
@ -149,7 +149,7 @@ static int decode_dds1(GetByteContext *gb, uint8_t *frame, int width, int height
|
|||||||
bitbuf = bytestream2_get_le16u(gb);
|
bitbuf = bytestream2_get_le16u(gb);
|
||||||
mask = 1;
|
mask = 1;
|
||||||
}
|
}
|
||||||
if (frame_end - frame < 2)
|
if (frame_end - frame < width + 2)
|
||||||
return -1;
|
return -1;
|
||||||
if (bitbuf & mask) {
|
if (bitbuf & mask) {
|
||||||
v = bytestream2_get_le16(gb);
|
v = bytestream2_get_le16(gb);
|
||||||
|
Loading…
Reference in New Issue
Block a user