From 872655fee9168550cb9e12d37d7a38e56c7da0eb Mon Sep 17 00:00:00 2001 From: Kelly Anderson Date: Wed, 14 Sep 2011 07:14:37 +0200 Subject: dvdsubdec: fix bad free in dvdsub_init Signed-off-by: Michael Niedermayer --- libavcodec/dvdsubdec.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libavcodec/dvdsubdec.c') diff --git a/libavcodec/dvdsubdec.c b/libavcodec/dvdsubdec.c index 9eb5665c9d..021d30dfe7 100644 --- a/libavcodec/dvdsubdec.c +++ b/libavcodec/dvdsubdec.c @@ -516,12 +516,12 @@ static int dvdsub_decode(AVCodecContext *avctx, static int dvdsub_init(AVCodecContext *avctx) { DVDSubContext *ctx = (DVDSubContext*) avctx->priv_data; - char *data; + char *dataorig, *data; if (!avctx->extradata || !avctx->extradata_size) return 1; - data = av_malloc(avctx->extradata_size+1); + dataorig = data = av_malloc(avctx->extradata_size+1); if (!data) return AVERROR(ENOMEM); memcpy(data, avctx->extradata, avctx->extradata_size); @@ -555,7 +555,7 @@ static int dvdsub_init(AVCodecContext *avctx) av_log(avctx, AV_LOG_DEBUG, "\n"); } - av_free(data); + av_free(dataorig); return 1; } -- cgit v1.2.3