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:11:00 UTC

[jira] [Commented] (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:comment-tabpanel&focusedCommentId=16849044#comment-16849044 ] 

Tilman Hausherr commented on PDFBOX-4552:
-----------------------------------------

Sorry about that. But it has already been fixed in PDFBOX-45, e.g. in rev 1857149. It will be in the 2.0.16 release.

> 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
>
> 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