You've already forked FFmpeg
							
							
				mirror of
				https://github.com/FFmpeg/FFmpeg.git
				synced 2025-10-30 23:18:11 +02:00 
			
		
		
		
	avfilter/avfilter: fix use of uninitialized pointer
Fixes CID1163852 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
		| @@ -999,7 +999,7 @@ static int ff_filter_frame_framed(AVFilterLink *link, AVFrame *frame) | ||||
|     int (*filter_frame)(AVFilterLink *, AVFrame *); | ||||
|     AVFilterContext *dstctx = link->dst; | ||||
|     AVFilterPad *dst = link->dstpad; | ||||
|     AVFrame *out; | ||||
|     AVFrame *out = NULL; | ||||
|     int ret; | ||||
|     AVFilterCommand *cmd= link->dst->command_queue; | ||||
|     int64_t pts; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user