avformat/dss: Use av_freep() to avoid leaving stale pointers in memory

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
pull/113/head^2
Michael Niedermayer 10 years ago
parent b2bbe8298b
commit be0cb7e053
  1. 2
      libavformat/dss.c

@ -326,7 +326,7 @@ static int dss_read_close(AVFormatContext *s)
{ {
DSSDemuxContext *ctx = s->priv_data; DSSDemuxContext *ctx = s->priv_data;
av_free(ctx->dss_sp_buf); av_freep(&ctx->dss_sp_buf);
return 0; return 0;
} }

Loading…
Cancel
Save