You've already forked FFmpeg
							
							
				mirror of
				https://github.com/FFmpeg/FFmpeg.git
				synced 2025-10-30 23:18:11 +02:00 
			
		
		
		
	avfilter/af_anequalizer: check return value of ff_insert_outpad()
This commit is contained in:
		| @@ -189,6 +189,7 @@ static av_cold int init(AVFilterContext *ctx) | ||||
| { | ||||
|     AudioNEqualizerContext *s = ctx->priv; | ||||
|     AVFilterPad pad, vpad; | ||||
|     int ret; | ||||
|  | ||||
|     pad = (AVFilterPad){ | ||||
|         .name         = av_strdup("out0"), | ||||
| @@ -208,10 +209,19 @@ static av_cold int init(AVFilterContext *ctx) | ||||
|             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->draw_curves) | ||||
|         ff_insert_outpad(ctx, 1, &vpad); | ||||
|     if (s->draw_curves) { | ||||
|         ret = ff_insert_outpad(ctx, 1, &vpad); | ||||
|         if (ret < 0) { | ||||
|             av_freep(&vpad.name); | ||||
|             return ret; | ||||
|         } | ||||
|     } | ||||
|  | ||||
|     return 0; | ||||
| } | ||||
| @@ -259,9 +269,8 @@ static av_cold void uninit(AVFilterContext *ctx) | ||||
| { | ||||
|     AudioNEqualizerContext *s = ctx->priv; | ||||
|  | ||||
|     av_freep(&ctx->output_pads[0].name); | ||||
|     if (s->draw_curves) | ||||
|         av_freep(&ctx->output_pads[1].name); | ||||
|     for (int i = 0; i < ctx->nb_outputs; i++) | ||||
|         av_freep(&ctx->output_pads[i].name); | ||||
|     av_frame_free(&s->video); | ||||
|     av_freep(&s->filters); | ||||
|     s->nb_filters = 0; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user