You've already forked FFmpeg
							
							
				mirror of
				https://github.com/FFmpeg/FFmpeg.git
				synced 2025-10-30 23:18:11 +02:00 
			
		
		
		
	tools/qt-faststart: Fix unintended sign extension of current_offset
Fixes: CID733809 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
		| @@ -240,7 +240,7 @@ int main(int argc, char *argv[]) | ||||
|                 goto error_out; | ||||
|             } | ||||
|             for (j = 0; j < offset_count; j++) { | ||||
|                 current_offset  = BE_32(&moov_atom[i + 12 + j * 4]); | ||||
|                 current_offset  = (uint32_t)BE_32(&moov_atom[i + 12 + j * 4]); | ||||
|                 current_offset += moov_atom_size; | ||||
|                 moov_atom[i + 12 + j * 4 + 0] = (current_offset >> 24) & 0xFF; | ||||
|                 moov_atom[i + 12 + j * 4 + 1] = (current_offset >> 16) & 0xFF; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user