discord / lilliput

Resize images and animated GIFs in Go
https://discord.com/blog/how-discord-resizes-150-million-images-every-day-with-go-and-c
Other
1.96k stars 123 forks source link

fix: Remove attempt to free animated WebP ICC color profile data. #186

Closed skidder closed 1 month ago

skidder commented 1 month ago

Fixes a bug where a call was made to WebPDataClear(&icc_data) using externally owned ICC color profile data, potentially causing a panic. This call is unnecessary since the icc_data struct is block-scoped, and the ICC color profile data is associated with the encoder and is managed separately.