LibPDF: Add a FIXME comment to the inline image data skipping path

This commit is contained in:
Nico Weber 2023-10-24 11:14:00 -07:00 committed by Andreas Kling
parent 2878af5968
commit 4549d6cf1b

View file

@ -548,6 +548,7 @@ PDFErrorOr<Vector<Operator>> Parser::parse_operators()
if (!operator_args.is_empty())
return error("operator args not empty on start of inline image");
// FIXME: `EI` can be part of the image data, e.g. on page 3 of 0000450.pdf of 0000.zip of the RGBA dataset.
while (!m_reader.done()) {
if (m_reader.matches("EI")) {
break;