summaryrefslogtreecommitdiff
path: root/src/lib/openjp2/image.c
diff options
context:
space:
mode:
authorEven Rouault <even.rouault@spatialys.com>2017-07-06 01:05:24 +0200
committerEven Rouault <even.rouault@spatialys.com>2017-08-07 18:32:49 +0200
commit61fb5dd7f81c2e3dfabbb99f59dc89572d59fa37 (patch)
tree38e7107022e8c7ada17efb120cb4f836d7e5cab1 /src/lib/openjp2/image.c
parent793edc38e41700e9b4cda4b7f9c79aba95b8d989 (diff)
Fix crash on Windows due to b7594c0fcb9dd3aa6356d72c4a525d76168da689
b7594c0fcb9dd3aa6356d72c4a525d76168da689 may put opj_tcd_tilecomp_t->data allocated by opj_alloc_tile_component_data() as the image->comps[].data. As opj_alloc_tile_component_data() use opj_aligned_malloc() we must be sure to ue opj_alined_malloc()/_free() in all places where we alloc/free image->comps[].data. Note: this might have some compatibility impact in case user code does itself the allocation/free of image->comps[].data
Diffstat (limited to 'src/lib/openjp2/image.c')
-rw-r--r--src/lib/openjp2/image.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/lib/openjp2/image.c b/src/lib/openjp2/image.c
index d00a2370..ecd65ece 100644
--- a/src/lib/openjp2/image.c
+++ b/src/lib/openjp2/image.c
@@ -68,19 +68,21 @@ opj_image_t* OPJ_CALLCONV opj_image_create(OPJ_UINT32 numcmpts,
comp->prec = cmptparms[compno].prec;
comp->bpp = cmptparms[compno].bpp;
comp->sgnd = cmptparms[compno].sgnd;
- if (comp->h != 0 && (OPJ_SIZE_T)comp->w > SIZE_MAX / comp->h) {
+ if (comp->h != 0 &&
+ (OPJ_SIZE_T)comp->w > SIZE_MAX / comp->h / sizeof(OPJ_INT32)) {
// TODO event manager
opj_image_destroy(image);
return NULL;
}
- comp->data = (OPJ_INT32*) opj_calloc((OPJ_SIZE_T)comp->w * comp->h,
- sizeof(OPJ_INT32));
+ comp->data = (OPJ_INT32*) opj_aligned_malloc(
+ (size_t)comp->w * comp->h * sizeof(OPJ_INT32));
if (!comp->data) {
/* TODO replace with event manager, breaks API */
/* fprintf(stderr,"Unable to allocate memory for image.\n"); */
opj_image_destroy(image);
return NULL;
}
+ memset(comp->data, 0, (size_t)comp->w * comp->h * sizeof(OPJ_INT32));
}
}
@@ -97,7 +99,7 @@ void OPJ_CALLCONV opj_image_destroy(opj_image_t *image)
for (compno = 0; compno < image->numcomps; compno++) {
opj_image_comp_t *image_comp = &(image->comps[compno]);
if (image_comp->data) {
- opj_free(image_comp->data);
+ opj_aligned_free(image_comp->data);
}
}
opj_free(image->comps);