summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libavcodec/8bps.c3
-rw-r--r--libavcodec/lcl.c4
2 files changed, 2 insertions, 5 deletions
diff --git a/libavcodec/8bps.c b/libavcodec/8bps.c
index 9adf4967c5..5123532d2d 100644
--- a/libavcodec/8bps.c
+++ b/libavcodec/8bps.c
@@ -160,8 +160,7 @@ static int decode_init(AVCodecContext *avctx)
c->pic.data[0] = NULL;
- // FIXME: find a better way to prevent integer overflow
- if (((unsigned int)avctx->width > 32000) || ((unsigned int)avctx->height > 32000)) {
+ if (avcodec_check_dimensions(avctx, avctx->width, avctx->height) < 0) {
av_log(avctx, AV_LOG_ERROR, "Bad image size (w = %d, h = %d).\n", avctx->width, avctx->height);
return 1;
}
diff --git a/libavcodec/lcl.c b/libavcodec/lcl.c
index cd2a3a8498..bf04154a91 100644
--- a/libavcodec/lcl.c
+++ b/libavcodec/lcl.c
@@ -640,9 +640,7 @@ static int decode_init(AVCodecContext *avctx)
return 1;
}
- // FIXME: find a better way to prevent integer overflow
- if (((unsigned int)avctx->width > 32000) || ((unsigned int)avctx->height > 32000)) {
- av_log(avctx, AV_LOG_ERROR, "Bad image size (w = %d, h = %d).\n", avctx->width, avctx->height);
+ if (avcodec_check_dimensions(avctx, avctx->width, avctx->height) < 0) {
return 1;
}