summaryrefslogtreecommitdiff
path: root/libavcodec/msrle.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-10-14 03:34:16 +0200
committerMichael Niedermayer <michaelni@gmx.at>2012-10-14 03:34:16 +0200
commit2fed05f53a881b64a02de7a324d67d8c029c6cf1 (patch)
treee250fe74aa4036d1c42a55c81ff2781861b4b178 /libavcodec/msrle.c
parentb12d92efd6c0d48665383a9baecc13e7ebbd8a22 (diff)
avoid more "0xFF << 24" as it is considered a integer overflow in C99
missed these in my previous search and replace Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/msrle.c')
-rw-r--r--libavcodec/msrle.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/msrle.c b/libavcodec/msrle.c
index 0e8a0e539d..2792f8b004 100644
--- a/libavcodec/msrle.c
+++ b/libavcodec/msrle.c
@@ -75,7 +75,7 @@ static av_cold int msrle_decode_init(AVCodecContext *avctx)
if (avctx->extradata_size >= AVPALETTE_SIZE)
for (i = 0; i < AVPALETTE_SIZE/4; i++)
- s->pal[i] = 0xFF<<24 | AV_RL32(avctx->extradata+4*i);
+ s->pal[i] = 0xFFU<<24 | AV_RL32(avctx->extradata+4*i);
return 0;
}