mirror of
https://github.com/webmproject/libwebp.git
synced 2025-04-05 00:16:50 +02:00
animencoder_fuzzer: fix leak on alloc failure
Change-Id: Id626145a336fc33c4a4158719957f3c96db156c8
This commit is contained in:
parent
5c965e55dd
commit
6be9bf8bae
@ -47,6 +47,7 @@ int AddFrame(WebPAnimEncoder** const enc,
|
|||||||
// Read the source picture.
|
// Read the source picture.
|
||||||
if (!ExtractSourcePicture(&pic, data, size, bit_pos)) {
|
if (!ExtractSourcePicture(&pic, data, size, bit_pos)) {
|
||||||
const WebPEncodingError error_code = pic.error_code;
|
const WebPEncodingError error_code = pic.error_code;
|
||||||
|
WebPAnimEncoderDelete(*enc);
|
||||||
WebPPictureFree(&pic);
|
WebPPictureFree(&pic);
|
||||||
if (error_code == VP8_ENC_ERROR_OUT_OF_MEMORY) return 0;
|
if (error_code == VP8_ENC_ERROR_OUT_OF_MEMORY) return 0;
|
||||||
fprintf(stderr, "Can't read input image. Error code: %d\n", error_code);
|
fprintf(stderr, "Can't read input image. Error code: %d\n", error_code);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user