mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 14:56:36 +00:00
qtmux: atomsrecovery: Fix compilation problem
Fixes a compilation error due to unused function result.
This commit is contained in:
parent
ad7eff41a8
commit
bcbdd12fb3
1 changed files with 10 additions and 2 deletions
|
@ -1070,8 +1070,16 @@ moov_recov_write_file (MoovRecovFile * moovrf, MdatRecovFile * mdatrf,
|
|||
|
||||
data = g_malloc (4096);
|
||||
while (!feof (mdatrf->file)) {
|
||||
gint read = fread (data, 1, 4096, mdatrf->file);
|
||||
fwrite (data, 1, read, outf);
|
||||
gint read, write;
|
||||
|
||||
read = fread (data, 1, 4096, mdatrf->file);
|
||||
write = fwrite (data, 1, read, outf);
|
||||
|
||||
if (write != read) {
|
||||
g_set_error (err, ATOMS_RECOV_QUARK, ATOMS_RECOV_ERR_FILE,
|
||||
"Failed to copy data to output file: %s", g_strerror (errno));
|
||||
goto fail;
|
||||
}
|
||||
}
|
||||
g_free (data);
|
||||
|
||||
|
|
Loading…
Reference in a new issue