memory leak fixed in openjpeg.c (opj_destroy_cstr_info()), patch by Carsten Juttner

This commit is contained in:
Antonin Descampe 2008-05-22 09:54:44 +00:00
parent 2f3dd4916f
commit 65e5ff0fb4
2 changed files with 4 additions and 0 deletions

View File

@ -5,6 +5,9 @@ What's New for OpenJPEG
! : changed
+ : added
May 20, 2008
* [antonin] memory leak fixed in openjpeg.c (opj_destroy_cstr_info()), patch by Carsten Juttner
March 12, 2008
+ [GB] help line for the -F option in j2k_to_image

View File

@ -325,5 +325,6 @@ void OPJ_CALLCONV opj_destroy_cstr_info(opj_codestream_info_t *cstr_info) {
}
opj_free(cstr_info->tile);
opj_free(cstr_info->marker);
opj_free(cstr_info->numdecompos);
}
}