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.
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 theicc_data
struct is block-scoped, and the ICC color profile data is associated with the encoder and is managed separately.