You've already forked FFmpeg
							
							
				mirror of
				https://github.com/FFmpeg/FFmpeg.git
				synced 2025-10-30 23:18:11 +02:00 
			
		
		
		
	avformat/libopenmpt: Check for avio_size() failure
Fixes CID1396850 Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
		| @@ -73,7 +73,7 @@ static int read_header_openmpt(AVFormatContext *s) | ||||
|     AVStream *st; | ||||
|     OpenMPTContext *openmpt = s->priv_data; | ||||
|     int64_t size = avio_size(s->pb); | ||||
|     if (!size) | ||||
|     if (size <= 0) | ||||
|         return AVERROR_INVALIDDATA; | ||||
|     char *buf = av_malloc(size); | ||||
|     int ret; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user