kornelski / pngquant

Lossy PNG compressor — pngquant command based on libimagequant library
https://pngquant.org
Other
5.19k stars 483 forks source link

fix: avoid unchecked nullptr deref on invalid lcms transform #379

Closed anthraxx closed 3 years ago

anthraxx commented 3 years ago

On invalid data the requested transform from lcms may return nun successfully. Hence we need to check the return value and early the function to avoid a segfault. To distinguish the concrete error, a new error code (45) has been introduced.

Signed-off-by: Levente Polyak levente@leventepolyak.net

kornelski commented 3 years ago

Thank you