mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-22 09:19:03 +00:00
LibImageDecoderClient: Decoded images with 0 frames are not successful
Previously you could pass anything (e.g a text file) to ImageDecoder and it would "succeed" in decoding it and give you back a 0-frame result. Let's consider that state a failure instead.
This commit is contained in:
@@ -51,6 +51,9 @@ Optional<DecodedImage> Client::decode_image(const ByteBuffer& encoded_data)
|
|||||||
|
|
||||||
auto& response = response_or_error.value();
|
auto& response = response_or_error.value();
|
||||||
|
|
||||||
|
if (response.bitmaps().is_empty())
|
||||||
|
return {};
|
||||||
|
|
||||||
DecodedImage image;
|
DecodedImage image;
|
||||||
image.is_animated = response.is_animated();
|
image.is_animated = response.is_animated();
|
||||||
image.loop_count = response.loop_count();
|
image.loop_count = response.loop_count();
|
||||||
|
|||||||
Reference in New Issue
Block a user