mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +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:
parent
69ce34c796
commit
582f36ca3f
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user