You've already forked FFmpeg
							
							
				mirror of
				https://github.com/FFmpeg/FFmpeg.git
				synced 2025-10-30 23:18:11 +02:00 
			
		
		
		
	avfilter/aeval: Fix use of uninitialized variable
Fixes CID1135776 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
		| @@ -172,7 +172,7 @@ end: | ||||
| static av_cold int init(AVFilterContext *ctx) | ||||
| { | ||||
|     EvalContext *eval = ctx->priv; | ||||
|     int ret; | ||||
|     int ret = 0; | ||||
|  | ||||
|     if (eval->chlayout_str) { | ||||
|         if (!strcmp(eval->chlayout_str, "same") && !strcmp(ctx->filter->name, "aeval")) { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user