Browse Source

Remove unnecessary checks before calling free

Feel free to revert if you can specify a concrete case where this actually
is necessary.

Originally committed as revision 23006 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.6
Martin Storsjö 16 years ago
parent
commit
d50fc2d07b
1 changed files with 0 additions and 2 deletions
  1. +0
    -2
      tools/qt-faststart.c

+ 0
- 2
tools/qt-faststart.c View File

@@ -310,7 +310,6 @@ int main(int argc, char *argv[])
fclose(infile);
fclose(outfile);
free(moov_atom);
if (ftyp_atom_size > 0)
free(ftyp_atom);

return 0;
@@ -319,7 +318,6 @@ error_out:
fclose(infile);
fclose(outfile);
free(moov_atom);
if (ftyp_atom_size > 0)
free(ftyp_atom);
return 1;
}

Loading…
Cancel
Save