mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-21 23:20:20 +00:00
LibPDF: Add a FIXME comment to the inline image data skipping path
This commit is contained in:
parent
2878af5968
commit
4549d6cf1b
Notes:
sideshowbarker
2024-07-17 00:25:35 +09:00
Author: https://github.com/nico Commit: https://github.com/SerenityOS/serenity/commit/4549d6cf1b Pull-request: https://github.com/SerenityOS/serenity/pull/21580
1 changed files with 1 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue