mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2026-01-23 23:21:06 +01:00
qt-faststart: Check the ftello() return codes
This silences a warning in the coverity static analyzer. Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
parent
03c2a66fcf
commit
6384885425
1 changed files with 6 additions and 2 deletions
|
|
@ -137,11 +137,11 @@ int main(int argc, char *argv[])
|
|||
goto error_out;
|
||||
}
|
||||
if (fseeko(infile, -ATOM_PREAMBLE_SIZE, SEEK_CUR) ||
|
||||
fread(ftyp_atom, atom_size, 1, infile) != 1) {
|
||||
fread(ftyp_atom, atom_size, 1, infile) != 1 ||
|
||||
(start_offset = ftello(infile)) < 0) {
|
||||
perror(argv[1]);
|
||||
goto error_out;
|
||||
}
|
||||
start_offset = ftello(infile);
|
||||
} else {
|
||||
int ret;
|
||||
/* 64-bit special case */
|
||||
|
|
@ -202,6 +202,10 @@ int main(int argc, char *argv[])
|
|||
goto error_out;
|
||||
}
|
||||
last_offset = ftello(infile);
|
||||
if (last_offset < 0) {
|
||||
perror(argv[1]);
|
||||
goto error_out;
|
||||
}
|
||||
moov_atom_size = atom_size;
|
||||
moov_atom = malloc(moov_atom_size);
|
||||
if (!moov_atom) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue