Allocated memory of coding parameters (cp) freed

This commit is contained in:
Francois-Olivier Devaux 2004-07-14 10:58:11 +00:00
parent 55e5910d6b
commit c020831f95
1 changed files with 8 additions and 0 deletions

View File

@ -850,6 +850,7 @@ int main(int argc, char **argv)
} }
fwrite(outbuf, 1, len, f); fwrite(outbuf, 1, len, f);
free(outbuf); free(outbuf);
free(jp2_struct->comps);
fclose(f); fclose(f);
} }
@ -874,6 +875,13 @@ int main(int argc, char **argv)
} }
} }
/* Free memory */
free(cp_init.tcps);
if (tcp_init->numlayers > 9) free(cp.matrice);
for (tileno = 0; tileno < cp.tw * cp.th; tileno++)
free(cp.tcps[tileno].tccps);
free(cp.tcps);
system("pause"); system("pause");
return 0; return 0;
} }