Commit 872655fe authored by Kelly Anderson's avatar Kelly Anderson Committed by Michael Niedermayer

dvdsubdec: fix bad free in dvdsub_init

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 15240feb
...@@ -516,12 +516,12 @@ static int dvdsub_decode(AVCodecContext *avctx, ...@@ -516,12 +516,12 @@ static int dvdsub_decode(AVCodecContext *avctx,
static int dvdsub_init(AVCodecContext *avctx) static int dvdsub_init(AVCodecContext *avctx)
{ {
DVDSubContext *ctx = (DVDSubContext*) avctx->priv_data; DVDSubContext *ctx = (DVDSubContext*) avctx->priv_data;
char *data; char *dataorig, *data;
if (!avctx->extradata || !avctx->extradata_size) if (!avctx->extradata || !avctx->extradata_size)
return 1; return 1;
data = av_malloc(avctx->extradata_size+1); dataorig = data = av_malloc(avctx->extradata_size+1);
if (!data) if (!data)
return AVERROR(ENOMEM); return AVERROR(ENOMEM);
memcpy(data, avctx->extradata, avctx->extradata_size); memcpy(data, avctx->extradata, avctx->extradata_size);
...@@ -555,7 +555,7 @@ static int dvdsub_init(AVCodecContext *avctx) ...@@ -555,7 +555,7 @@ static int dvdsub_init(AVCodecContext *avctx)
av_log(avctx, AV_LOG_DEBUG, "\n"); av_log(avctx, AV_LOG_DEBUG, "\n");
} }
av_free(data); av_free(dataorig);
return 1; return 1;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment