Browse Source

avcodec/exr: favor av_freep() over av_free() for saftey

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.1
Michael Niedermayer 11 years ago
parent
commit
d0812f91c8
1 changed files with 5 additions and 5 deletions
  1. +5
    -5
      libavcodec/exr.c

+ 5
- 5
libavcodec/exr.c View File

@@ -563,7 +563,7 @@ static int huf_uncompress(GetByteContext *gb,
fail:
for (i = 0; i < HUF_DECSIZE; i++) {
if (hdec[i].p)
av_free(hdec[i].p);
av_freep(&hdec[i].p);
}

av_free(freq);
@@ -1256,10 +1256,10 @@ static av_cold int decode_end(AVCodecContext *avctx)

for (i = 0; i < s->thread_data_size / sizeof(EXRThreadData); i++) {
EXRThreadData *td = &s->thread_data[i];
av_free(td->uncompressed_data);
av_free(td->tmp);
av_free(td->bitmap);
av_free(td->lut);
av_freep(&td->uncompressed_data);
av_freep(&td->tmp);
av_freep(&td->bitmap);
av_freep(&td->lut);
}

av_freep(&s->thread_data);


Loading…
Cancel
Save