[Poppler-bugs] [Bug 107057] [Patch] Skip XRef gaps in PDFDoc save methods
bugzilla-daemon at freedesktop.org
bugzilla-daemon at freedesktop.org
Fri Jun 29 11:40:34 UTC 2018
https://bugs.freedesktop.org/show_bug.cgi?id=107057
--- Comment #7 from Albert Astals Cid <aacid at kde.org> ---
Took me a while to realize the problem was getEntry tries to reconstruct on the
none entries (because i didn't read the comment before reading the patch).
I was wondering if changig getEntry would be easier for the next people that
read the code next time?
i.e. a new bool (or changing the bool to a flag) to tell getEntry to don't try
to reconstruct?
enum GetEntryFlags
{
None,
DoNotComplainIfMissing
DoNotTryToRecoverIfNone
}
XRefEntry *getEntry(int i, GetEntryFlags flags = None);
then the code in saveXXX would be xref->getEntry(i, DoNotTryToRecoverIfNone)
which may be easier to understand for third party readers?
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.freedesktop.org/archives/poppler-bugs/attachments/20180629/9a2e970e/attachment.html>
More information about the Poppler-bugs
mailing list