| Index: third_party/libwebp/utils/color_cache.c
|
| diff --git a/third_party/libwebp/utils/color_cache.c b/third_party/libwebp/utils/color_cache.c
|
| index 66a44647fd3cede515519c42baefed9777f9c0da..8a88f08b70ce5506368894fd771b4371f47c050b 100644
|
| --- a/third_party/libwebp/utils/color_cache.c
|
| +++ b/third_party/libwebp/utils/color_cache.c
|
| @@ -32,7 +32,7 @@ int VP8LColorCacheInit(VP8LColorCache* const cc, int hash_bits) {
|
|
|
| void VP8LColorCacheClear(VP8LColorCache* const cc) {
|
| if (cc != NULL) {
|
| - free(cc->colors_);
|
| + WebPSafeFree(cc->colors_);
|
| cc->colors_ = NULL;
|
| }
|
| }
|
|
|