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

@@ -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);
}
}