summaryrefslogtreecommitdiff
path: root/libavcodec/sunrast.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/sunrast.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/sunrast.c')
-rw-r--r--libavcodec/sunrast.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/sunrast.c b/libavcodec/sunrast.c
index f20e6820be..eb245dab1a 100644
--- a/libavcodec/sunrast.c
+++ b/libavcodec/sunrast.c
@@ -141,7 +141,7 @@ static int sunrast_decode_frame(AVCodecContext *avctx, void *data,
ptr = p->data[1];
for (x = 0; x < len; x++, ptr += 4)
- *(uint32_t *)ptr = (0xFF<<24) + (buf[x]<<16) + (buf[len+x]<<8) + buf[len+len+x];
+ *(uint32_t *)ptr = (0xFFU<<24) + (buf[x]<<16) + (buf[len+x]<<8) + buf[len+len+x];
}
buf += maplength;