mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-08 06:09:50 +00:00
avcodec/exr: use av_freep() for saftey
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
9595f36700
commit
879072018f
1 changed files with 2 additions and 2 deletions
|
|
@ -652,8 +652,8 @@ static int piz_uncompress(EXRContext *s, const uint8_t *src, int ssize,
|
|||
if (!td->lut)
|
||||
td->lut = av_malloc(1 << 17);
|
||||
if (!td->bitmap || !td->lut) {
|
||||
av_free(td->bitmap);
|
||||
av_free(td->lut);
|
||||
av_freep(&td->bitmap);
|
||||
av_freep(&td->lut);
|
||||
return AVERROR(ENOMEM);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue