You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
Merge commit '63848854256a024a19435e87d6bc76fffa65e81e'
* commit '63848854256a024a19435e87d6bc76fffa65e81e':
qt-faststart: Check the ftello() return codes
Conflicts:
tools/qt-faststart.c
See: 4a2297294f
Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@@ -203,6 +203,10 @@ int main(int argc, char *argv[])
|
|||||||
goto error_out;
|
goto error_out;
|
||||||
}
|
}
|
||||||
last_offset = ftello(infile);
|
last_offset = ftello(infile);
|
||||||
|
if (last_offset < 0) {
|
||||||
|
perror(argv[1]);
|
||||||
|
goto error_out;
|
||||||
|
}
|
||||||
moov_atom_size = atom_size;
|
moov_atom_size = atom_size;
|
||||||
moov_atom = malloc(moov_atom_size);
|
moov_atom = malloc(moov_atom_size);
|
||||||
if (!moov_atom) {
|
if (!moov_atom) {
|
||||||
|
Reference in New Issue
Block a user