libavcodec/tiffenc: Use av_freep() avoid leaving stale pointers in memory

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
pull/96/head
Michael Niedermayer 10 years ago
parent 98fbf8ef67
commit bb5e148299
  1. 2
      libavcodec/tiffenc.c

@ -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…
Cancel
Save