You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
avfilter/vf_colormatrix: fix memleak on error
Fixes CID1197065 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@@ -353,6 +353,7 @@ static int filter_frame(AVFilterLink *link, AVFrame *in)
|
|||||||
case AVCOL_SPC_BT470BG : source = COLOR_MODE_BT601 ; break;
|
case AVCOL_SPC_BT470BG : source = COLOR_MODE_BT601 ; break;
|
||||||
default :
|
default :
|
||||||
av_log(ctx, AV_LOG_ERROR, "Input frame does not specify a supported colorspace, and none has been specified as source either\n");
|
av_log(ctx, AV_LOG_ERROR, "Input frame does not specify a supported colorspace, and none has been specified as source either\n");
|
||||||
|
av_frame_free(&out);
|
||||||
return AVERROR(EINVAL);
|
return AVERROR(EINVAL);
|
||||||
}
|
}
|
||||||
color->mode = source * 4 + color->dest;
|
color->mode = source * 4 + color->dest;
|
||||||
|
Reference in New Issue
Block a user