You've already forked FFmpeg
							
							
				mirror of
				https://github.com/FFmpeg/FFmpeg.git
				synced 2025-10-30 23:18:11 +02:00 
			
		
		
		
	avcodec/indeo3: check the return code of ff_set_dimensions()
This is currently redundant as the checks before it are tighter than the checks in ff_set_dimensions() but its more robust not to depend on that. Fixes CID1135740 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
		| @@ -956,7 +956,8 @@ static int decode_frame_headers(Indeo3DecodeContext *ctx, AVCodecContext *avctx, | ||||
|         free_frame_buffers(ctx); | ||||
|         if ((res = allocate_frame_buffers(ctx, avctx, width, height)) < 0) | ||||
|              return res; | ||||
|         ff_set_dimensions(avctx, width, height); | ||||
|         if ((res = ff_set_dimensions(avctx, width, height)) < 0) | ||||
|             return res; | ||||
|     } | ||||
|  | ||||
|     y_offset = bytestream2_get_le32(&gb); | ||||
|   | ||||
		Reference in New Issue
	
	Block a user