mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-01-30 11:24:17 +00:00
avcodec/vmdav: use av_freep() and reset unpack_buffer_size
Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
parent
4f0e85517f
commit
2145e8f193
@ -458,7 +458,8 @@ static av_cold int vmdvideo_decode_end(AVCodecContext *avctx)
|
||||
VmdVideoContext *s = avctx->priv_data;
|
||||
|
||||
av_frame_unref(&s->prev_frame);
|
||||
av_free(s->unpack_buffer);
|
||||
av_freep(&s->unpack_buffer);
|
||||
s->unpack_buffer_size = 0;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user