libavcodec/tiffenc: Use av_freep() avoid leaving stale pointers in memory
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
98fbf8ef67
commit
bb5e148299
1 changed files with 1 additions and 1 deletions
|
|
@ -420,7 +420,7 @@ static int encode_frame(AVCodecContext *avctx, AVPacket *pkt,
|
|||
}
|
||||
}
|
||||
if (s->compr == TIFF_LZW)
|
||||
av_free(s->lzws);
|
||||
av_freep(&s->lzws);
|
||||
}
|
||||
|
||||
s->num_entries = 0;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue