Commit d50fc2d0 authored by Martin Storsjö's avatar Martin Storsjö

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
parent 593a8614
...@@ -310,7 +310,6 @@ int main(int argc, char *argv[]) ...@@ -310,7 +310,6 @@ int main(int argc, char *argv[])
fclose(infile); fclose(infile);
fclose(outfile); fclose(outfile);
free(moov_atom); free(moov_atom);
if (ftyp_atom_size > 0)
free(ftyp_atom); free(ftyp_atom);
return 0; return 0;
...@@ -319,7 +318,6 @@ error_out: ...@@ -319,7 +318,6 @@ error_out:
fclose(infile); fclose(infile);
fclose(outfile); fclose(outfile);
free(moov_atom); free(moov_atom);
if (ftyp_atom_size > 0)
free(ftyp_atom); free(ftyp_atom);
return 1; return 1;
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment