diff --git a/Userland/Libraries/LibGfx/ImageFormats/ILBMLoader.cpp b/Userland/Libraries/LibGfx/ImageFormats/ILBMLoader.cpp index 9da98c29d2..8ce53f1972 100644 --- a/Userland/Libraries/LibGfx/ImageFormats/ILBMLoader.cpp +++ b/Userland/Libraries/LibGfx/ImageFormats/ILBMLoader.cpp @@ -298,6 +298,9 @@ static ErrorOr decode_iff_chunks(ILBMLoadingContext& context) if (chunk.type == FourCC("CMAP")) { context.color_table = TRY(decode_cmap_chunk(chunk)); } else if (chunk.type == FourCC("BODY")) { + if (context.color_table.is_empty()) + return Error::from_string_literal("Decoding BODY chunk without a color map is not currently supported"); + TRY(decode_body_chunk(chunk, context)); context.state = ILBMLoadingContext::State::BitmapDecoded; } else if (chunk.type == FourCC("CRNG")) {