avformat/bintext: Check width in idf_read_header()
Fixes: division by 0 Fixes: 26802/clusterfuzz-testcase-minimized-ffmpeg_dem_IDF_fuzzer-5180591554953216.fuzz Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> (cherry picked from commit 442d53f409c8d84c7db120227caac00af54aa884) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
		
							parent
							
								
									9d2df3050e
								
							
						
					
					
						commit
						c2221da019
					
				@ -340,6 +340,8 @@ static int idf_read_header(AVFormatContext *s)
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
    bin->fsize = avio_size(pb) - 12 - 4096 - 48;
 | 
					    bin->fsize = avio_size(pb) - 12 - 4096 - 48;
 | 
				
			||||||
    ff_sauce_read(s, &bin->fsize, &got_width, 0);
 | 
					    ff_sauce_read(s, &bin->fsize, &got_width, 0);
 | 
				
			||||||
 | 
					    if (st->codecpar->width < 8)
 | 
				
			||||||
 | 
					        return AVERROR_INVALIDDATA;
 | 
				
			||||||
    if (!bin->width)
 | 
					    if (!bin->width)
 | 
				
			||||||
        calculate_height(st->codecpar, bin->fsize);
 | 
					        calculate_height(st->codecpar, bin->fsize);
 | 
				
			||||||
    avio_seek(pb, 12, SEEK_SET);
 | 
					    avio_seek(pb, 12, SEEK_SET);
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user