1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 01:37:36 +00:00

LibPDF: Add two FIXMEs

This commit is contained in:
Nico Weber 2023-10-12 10:18:46 -04:00 committed by Andreas Kling
parent d451197d3d
commit 2249e79630
2 changed files with 4 additions and 0 deletions

View file

@ -388,6 +388,7 @@ PDFErrorOr<Vector<DeprecatedFlyString>> CFF::parse_charset(Reader&& reader, size
auto resolve = [](SID sid) {
if (sid < s_cff_builtin_names.size())
return DeprecatedFlyString(s_cff_builtin_names[sid]);
// FIXME: Read from String INDEX instead.
dbgln("Cound't find string for SID {}, going with space", sid);
return DeprecatedFlyString("space");
};