mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-27 13:10:37 +00:00
avcodec/nellymoserenc: use av_freep(), do not leave stale pointers in memory
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
52bf4ad674
commit
993a2487de
@ -138,8 +138,8 @@ static av_cold int encode_end(AVCodecContext *avctx)
|
||||
ff_mdct_end(&s->mdct_ctx);
|
||||
|
||||
if (s->avctx->trellis) {
|
||||
av_free(s->opt);
|
||||
av_free(s->path);
|
||||
av_freep(&s->opt);
|
||||
av_freep(&s->path);
|
||||
}
|
||||
ff_af_queue_close(&s->afq);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user