Commit 83f7a5eb authored by Paul B Mahol's avatar Paul B Mahol

avfilter/avf_aphasemeter: check return value of ff_insert_outpad()

parent 11fc1899
...@@ -233,6 +233,7 @@ static av_cold int init(AVFilterContext *ctx) ...@@ -233,6 +233,7 @@ static av_cold int init(AVFilterContext *ctx)
{ {
AudioPhaseMeterContext *s = ctx->priv; AudioPhaseMeterContext *s = ctx->priv;
AVFilterPad pad; AVFilterPad pad;
int ret;
pad = (AVFilterPad){ pad = (AVFilterPad){
.name = av_strdup("out0"), .name = av_strdup("out0"),
...@@ -240,7 +241,11 @@ static av_cold int init(AVFilterContext *ctx) ...@@ -240,7 +241,11 @@ static av_cold int init(AVFilterContext *ctx)
}; };
if (!pad.name) if (!pad.name)
return AVERROR(ENOMEM); return AVERROR(ENOMEM);
ff_insert_outpad(ctx, 0, &pad); ret = ff_insert_outpad(ctx, 0, &pad);
if (ret < 0) {
av_freep(&pad.name);
return ret;
}
if (s->do_video) { if (s->do_video) {
pad = (AVFilterPad){ pad = (AVFilterPad){
...@@ -250,7 +255,11 @@ static av_cold int init(AVFilterContext *ctx) ...@@ -250,7 +255,11 @@ static av_cold int init(AVFilterContext *ctx)
}; };
if (!pad.name) if (!pad.name)
return AVERROR(ENOMEM); return AVERROR(ENOMEM);
ff_insert_outpad(ctx, 1, &pad); ret = ff_insert_outpad(ctx, 1, &pad);
if (ret < 0) {
av_freep(&pad.name);
return ret;
}
} }
return 0; return 0;
......
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