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>2016-10-30 15:44:52 +0300
committerMichael Niedermayer <michael@niedermayer.cc>2016-11-26 17:12:26 +0300
commite3f8b322793d54b168cf51f59ff0ec76160e6f77 (patch)
tree385a0b225c760d661587d59c8e5b41ef0e5698c0 /libavcodec/8bps.c
parentfe4c6aeb9935fd91bbe9e8656fc70b2b3539e851 (diff)
avcodec/8bps: Check side data size before use
Fixes out of array read Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> (cherry picked from commit 042faa847feea820451c474af0034fd3de9cff82) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec/8bps.c')
-rw-r--r--libavcodec/8bps.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/libavcodec/8bps.c b/libavcodec/8bps.c
index 2e4464dbb4..14f7bd5bf6 100644
--- a/libavcodec/8bps.c
+++ b/libavcodec/8bps.c
@@ -120,12 +120,15 @@ static int decode_frame(AVCodecContext *avctx, void *data,
}
if (avctx->bits_per_coded_sample <= 8) {
+ int size;
const uint8_t *pal = av_packet_get_side_data(avpkt,
AV_PKT_DATA_PALETTE,
- NULL);
- if (pal) {
+ &size);
+ if (pal && size == AVPALETTE_SIZE) {
frame->palette_has_changed = 1;
memcpy(c->pal, pal, AVPALETTE_SIZE);
+ } else if (pal) {
+ av_log(avctx, AV_LOG_ERROR, "Palette size %d is wrong\n", size);
}
memcpy (frame->data[1], c->pal, AVPALETTE_SIZE);