On 11/05/15 21:11, Vittorio Giovara wrote:
> 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;
>  }
> 

Probably ok.
_______________________________________________
libav-devel mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-devel

Reply via email to