mirror of
https://github.com/UglyToad/PdfPig.git
synced 2025-04-05 20:55:01 +08:00
Fix Issue 519 Break infinite loop parsing kid token list containing parent
This commit is contained in:
parent
29adece983
commit
9ef07b0176
@ -102,8 +102,8 @@
|
||||
|
||||
do
|
||||
{
|
||||
var current = toProcess.Dequeue();
|
||||
|
||||
var current = toProcess.Dequeue();
|
||||
if (current.reference.GetHashCode() == current.parentReference.GetHashCode()) { continue; } // Issue #519
|
||||
if (!current.nodeDictionary.TryGet(NameToken.Kids, pdfTokenScanner, out ArrayToken kids))
|
||||
{
|
||||
if (!isLenientParsing)
|
||||
|
Loading…
Reference in New Issue
Block a user