xbm: use av_frame_free on close

pull/64/head
Vittorio Giovara 11 years ago
parent a7a5e3850e
commit 792e4c21f2
  1. 2
      libavcodec/xbmenc.c

@ -69,7 +69,7 @@ static int xbm_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
static av_cold int xbm_encode_close(AVCodecContext *avctx) static av_cold int xbm_encode_close(AVCodecContext *avctx)
{ {
av_freep(&avctx->coded_frame); av_frame_free(&avctx->coded_frame);
return 0; return 0;
} }

Loading…
Cancel
Save