1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-10-03 17:29:30 +02:00

avfilter: fix graphparser memleaks on error paths

Fixes CID700635, CID700636 and CID732274.
This commit is contained in:
Janne Grunau 2012-10-09 21:28:32 +02:00
parent 587874ef1c
commit 285b706b55

View File

@ -238,10 +238,11 @@ static int link_filter_inouts(AVFilterContext *filt_ctx,
return AVERROR(ENOMEM); return AVERROR(ENOMEM);
if (p->filter_ctx) { if (p->filter_ctx) {
if ((ret = link_filter(p->filter_ctx, p->pad_idx, filt_ctx, pad, log_ctx)) < 0) ret = link_filter(p->filter_ctx, p->pad_idx, filt_ctx, pad, log_ctx);
return ret;
av_free(p->name); av_free(p->name);
av_free(p); av_free(p);
if (ret < 0)
return ret;
} else { } else {
p->filter_ctx = filt_ctx; p->filter_ctx = filt_ctx;
p->pad_idx = pad; p->pad_idx = pad;
@ -289,8 +290,10 @@ static int parse_inputs(const char **buf, AVFilterInOut **curr_inputs,
av_free(name); av_free(name);
} else { } else {
/* Not in the list, so add it as an input */ /* Not in the list, so add it as an input */
if (!(match = av_mallocz(sizeof(AVFilterInOut)))) if (!(match = av_mallocz(sizeof(AVFilterInOut)))) {
av_free(name);
return AVERROR(ENOMEM); return AVERROR(ENOMEM);
}
match->name = name; match->name = name;
match->pad_idx = pad; match->pad_idx = pad;
} }
@ -318,24 +321,27 @@ static int parse_outputs(const char **buf, AVFilterInOut **curr_inputs,
AVFilterInOut *match; AVFilterInOut *match;
AVFilterInOut *input = *curr_inputs; AVFilterInOut *input = *curr_inputs;
if (!input) {
av_log(log_ctx, AV_LOG_ERROR,
"No output pad can be associated to link label '%s'.\n",
name);
return AVERROR(EINVAL);
}
*curr_inputs = (*curr_inputs)->next;
if (!name) if (!name)
return AVERROR(EINVAL); return AVERROR(EINVAL);
if (!input) {
av_log(log_ctx, AV_LOG_ERROR,
"No output pad can be associated to link label '%s'.\n", name);
av_free(name);
return AVERROR(EINVAL);
}
*curr_inputs = (*curr_inputs)->next;
/* First check if the label is not in the open_inputs list */ /* First check if the label is not in the open_inputs list */
match = extract_inout(name, open_inputs); match = extract_inout(name, open_inputs);
if (match) { if (match) {
if ((ret = link_filter(input->filter_ctx, input->pad_idx, if ((ret = link_filter(input->filter_ctx, input->pad_idx,
match->filter_ctx, match->pad_idx, log_ctx)) < 0) match->filter_ctx, match->pad_idx, log_ctx)) < 0) {
av_free(name);
return ret; return ret;
}
av_free(match->name); av_free(match->name);
av_free(name); av_free(name);
av_free(match); av_free(match);