[FFmpeg-cvslog] bgmc: fix sizeof arguments (should fix CIDs: 700724 and 608084)

Thilo Borgmann git at videolan.org
Sun Oct 14 21:07:46 CEST 2012


ffmpeg | branch: master | Thilo Borgmann <thilo.borgmann at googlemail.com> | Sun Oct 14 17:38:21 2012 +0200| [41bf943f709e7327601f5aa02599fdcb3c1ca59d] | committer: Michael Niedermayer

bgmc: fix sizeof arguments (should fix CIDs: 700724 and 608084)

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

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

 libavcodec/bgmc.c |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/libavcodec/bgmc.c b/libavcodec/bgmc.c
index e4f937c..8b84ebf 100644
--- a/libavcodec/bgmc.c
+++ b/libavcodec/bgmc.c
@@ -458,8 +458,8 @@ static uint8_t *bgmc_lut_getp(uint8_t *lut, int *lut_status, int delta)
 /** Initialize the lookup table arrays */
 int ff_bgmc_init(AVCodecContext *avctx, uint8_t **cf_lut, int **cf_lut_status)
 {
-    *cf_lut        = av_malloc(sizeof(*cf_lut)        * LUT_BUFF * 16 * LUT_SIZE);
-    *cf_lut_status = av_malloc(sizeof(*cf_lut_status) * LUT_BUFF);
+    *cf_lut        = av_malloc(sizeof(**cf_lut)        * LUT_BUFF * 16 * LUT_SIZE);
+    *cf_lut_status = av_malloc(sizeof(**cf_lut_status) * LUT_BUFF);
 
     if (!cf_lut || !cf_lut_status) {
         ff_bgmc_end(cf_lut, cf_lut_status);
@@ -467,7 +467,7 @@ int ff_bgmc_init(AVCodecContext *avctx, uint8_t **cf_lut, int **cf_lut_status)
         return AVERROR(ENOMEM);
     } else {
         // initialize lut_status buffer to a value never used to compare against
-        memset(*cf_lut_status, -1, sizeof(*cf_lut_status) * LUT_BUFF);
+        memset(*cf_lut_status, -1, sizeof(**cf_lut_status) * LUT_BUFF);
     }
 
     return 0;



More information about the ffmpeg-cvslog mailing list