File r1883-Fix-comment-in-r1882-referring-to-incorrent-CVE-ID.patch of Package podofo.23799
------------------------------------------------------------------------
r1883 | mabri | 2018-02-09 00:15:53 +0100 (vie, 09 feb 2018) | 2 lines
Fix in r1882 is for CVE-2017-8054 instead: mention this ID in its source hunk
Index: src/doc/PdfPagesTree.cpp
===================================================================
--- src/doc/PdfPagesTree.cpp (revision 1882)
+++ src/doc/PdfPagesTree.cpp (revision 1883)
@@ -479,8 +479,8 @@
if( rVar.IsArray() )
{
// Fixes some broken PDFs who have trees with 1 element kids arrays
- // Recursive call removed to prevent stack overflow, replaced by:
- // all the following inside this conditional, plus restart looping
+ // Recursive call removed to prevent stack overflow (CVE-2017-8054)
+ // replaced by the following inside this conditional incl. continue
const PdfArray & rVarArray = rVar.GetArray();
if (rVarArray.GetSize() == 0)
{
------------------------------------------------------------------------