diff options
| author | Even Rouault <even.rouault@spatialys.com> | 2020-11-30 22:31:51 +0100 |
|---|---|---|
| committer | Even Rouault <even.rouault@spatialys.com> | 2020-11-30 22:31:51 +0100 |
| commit | b2072402b7e14d22bba6fb8cde2a1e9996e9a919 (patch) | |
| tree | a26ca8c83df6b606622c13ef9640a17761f99e30 /src | |
| parent | a2b2980a4bcb4d3903375de31495f99dde0e98a8 (diff) | |
pngtoimage(): fix wrong computation of x1,y1 if -d option is used, that would result in a heap buffer overflow (fixes #1284)
Diffstat (limited to 'src')
| -rw-r--r-- | src/bin/jp2/convertpng.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/jp2/convertpng.c b/src/bin/jp2/convertpng.c index 328c91be..00f596e2 100644 --- a/src/bin/jp2/convertpng.c +++ b/src/bin/jp2/convertpng.c @@ -223,9 +223,9 @@ opj_image_t *pngtoimage(const char *read_idf, opj_cparameters_t * params) image->x0 = (OPJ_UINT32)params->image_offset_x0; image->y0 = (OPJ_UINT32)params->image_offset_y0; image->x1 = (OPJ_UINT32)(image->x0 + (width - 1) * (OPJ_UINT32) - params->subsampling_dx + 1 + image->x0); + params->subsampling_dx + 1); image->y1 = (OPJ_UINT32)(image->y0 + (height - 1) * (OPJ_UINT32) - params->subsampling_dy + 1 + image->y0); + params->subsampling_dy + 1); row32s = (OPJ_INT32 *)malloc((size_t)width * nr_comp * sizeof(OPJ_INT32)); if (row32s == NULL) { |
