From: Carl Eugen Hoyos <[email protected]>
Additional overflow fix by Michael Niedermayer <[email protected]>.
---
libavcodec/qdrw.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavcodec/qdrw.c b/libavcodec/qdrw.c
index 1eb2a76..f7a4377 100644
--- a/libavcodec/qdrw.c
+++ b/libavcodec/qdrw.c
@@ -61,7 +61,7 @@ static int parse_palette(AVCodecContext *avctx,
GetByteContext *gbc,
bytestream2_skip(gbc, 1);
b = bytestream2_get_byte(gbc);
bytestream2_skip(gbc, 1);
- pal[idx] = (r << 16) | (g << 8) | b;
+ pal[idx] = (0xFFU << 24) | (r << 16) | (g << 8) | b;
}
return 0;
}
--
1.9.5 (Apple Git-50.3)
_______________________________________________
libav-devel mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-devel