mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 02:17:35 +00:00
LibGfx/WebP: Use context.error() in animation frame decoding function
That also sets the error state on the context.
This commit is contained in:
parent
40e839fd7e
commit
36c8c1129b
1 changed files with 1 additions and 1 deletions
|
@ -1562,7 +1562,7 @@ static ErrorOr<ImageData> decode_webp_animation_frame_image_data(WebPLoadingCont
|
|||
}
|
||||
|
||||
if (chunk.type != FourCC("VP8 ") && chunk.type != FourCC("VP8L"))
|
||||
return Error::from_string_literal("WebPImageDecoderPlugin: no image data found in animation frame");
|
||||
return context.error("WebPImageDecoderPlugin: no image data found in animation frame");
|
||||
|
||||
image_data.image_data_chunk = chunk;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue