openjpeg/src/lib
Aleks L be95561917
Fix Heap-buffer-overflow READ in opj_jp2_apply_pclr (#1441)
The issue was found while fuzzing opencv:
https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=47342

The read overflow triggered by reading `src[j]` in
```cpp
            for (j = 0; j < max; ++j) {
                dst[j] = src[j];
            }
```
The max is calculated as `new_comps[pcol].w * new_comps[pcol].h`, however the `src = old_comps[cmp].data;` which may have different `w` and `h` dimensions.
2022-08-12 15:48:41 +02:00
..
openjp2 Fix Heap-buffer-overflow READ in opj_jp2_apply_pclr (#1441) 2022-08-12 15:48:41 +02:00
openjpip CMake: switch to GNUInstallDirs (#1424) 2022-08-07 16:42:01 +02:00
CMakeLists.txt Remove obsolete components JPWL, JP3D and MJ2 2021-05-04 19:21:45 +02:00