Allocated memory of coding parameters (cp) freed
This commit is contained in:
parent
55e5910d6b
commit
c020831f95
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue