Bug on jp2_struct->comps memory allocation fixed

This commit is contained in:
Francois-Olivier Devaux 2004-07-16 13:16:39 +00:00
parent 54b04573f9
commit 5da1d86a03
1 changed files with 1 additions and 1 deletions

View File

@ -82,7 +82,7 @@ int jp2_init_stdjp2(jp2_struct_t * jp2_struct, j2k_image_t * img)
jp2_struct->h = img->y1 - img->y0; // HEIGHT
jp2_struct->w = img->x1 - img->x0; // WIDTH
jp2_struct->numcomps = img->numcomps; // NC
jp2_struct->comps = (jp2_comps_t *) malloc(sizeof(jp2_comps_t));
jp2_struct->comps = (jp2_comps_t *) malloc(jp2_struct->numcomps * sizeof(jp2_comps_t));
depth_0 = img->comps[0].prec - 1;
sign = img->comps[0].sgnd;