[FFmpeg-cvslog] avcodec/vble: Check av_image_get_buffer_size() for failure

Michael Niedermayer git at videolan.org
Sun Jan 5 01:27:32 EET 2025


ffmpeg | branch: release/2.8 | Michael Niedermayer <michael at niedermayer.cc> | Sat May 18 00:32:43 2024 +0200| [b788b7319ebdc26debbad737fbd6e7da0231cf22] | committer: Michael Niedermayer

avcodec/vble: Check av_image_get_buffer_size() for failure

Fixes: CID1461482 Improper use of negative value

Sponsored-by: Sovereign Tech Fund
Reviewed-.by: "Xiang, Haihao" <haihao.xiang at intel.com>
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
(cherry picked from commit dd5379db5d83d8b06654582afe327daa6be678a3)
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=b788b7319ebdc26debbad737fbd6e7da0231cf22
---

 libavcodec/vble.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/libavcodec/vble.c b/libavcodec/vble.c
index 30b77cecf6..d9e0f71c1a 100644
--- a/libavcodec/vble.c
+++ b/libavcodec/vble.c
@@ -190,6 +190,9 @@ static av_cold int vble_decode_init(AVCodecContext *avctx)
     ctx->size = avpicture_get_size(avctx->pix_fmt,
                                    avctx->width, avctx->height);
 
+    if (ctx->size < 0)
+        return ctx->size;
+
     ctx->val = av_malloc_array(ctx->size, sizeof(*ctx->val));
 
     if (!ctx->val) {



More information about the ffmpeg-cvslog mailing list