You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@pdfbox.apache.org by "Tilman Hausherr (JIRA)" <ji...@apache.org> on 2019/05/27 16:14:00 UTC

[jira] [Closed] (PDFBOX-4552) Regression on COSWriter in PDFBox 2.0.15

     [ https://issues.apache.org/jira/browse/PDFBOX-4552?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Tilman Hausherr closed PDFBOX-4552.
-----------------------------------
    Resolution: Duplicate

> Regression on COSWriter in PDFBox 2.0.15
> ----------------------------------------
>
>                 Key: PDFBOX-4552
>                 URL: https://issues.apache.org/jira/browse/PDFBOX-4552
>             Project: PDFBox
>          Issue Type: Bug
>          Components: Writing
>    Affects Versions: 2.0.15
>            Reporter: Maxime Veron
>            Priority: Blocker
>              Labels: regression
>
> In method _doWriteTrailer_ an unsafe setter is called on _getItem(COSName.ID).setDirect(true)_.
>  
> It was not done in PDFBox 2.0.14. This causes NPEs. 
> My quick and easy fix to restore PDFBox 2.0.14 behavior : 
>  
> {code:java}
> COSArray id = ((COSArray) trailer.getItem(COSName.ID));
> if (id != null) 
> {
>     id.setDirect(true);
> }
> {code}
> Best regards,
> M.Véron



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@pdfbox.apache.org
For additional commands, e-mail: dev-help@pdfbox.apache.org