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

Tilman Hausherr updated PDFBOX-2678:
------------------------------------
    Affects Version/s: 2.0.0
                       1.8.9
                       1.8.8

> possible NPE in ExtractText tool of trunk
> -----------------------------------------
>
>                 Key: PDFBOX-2678
>                 URL: https://issues.apache.org/jira/browse/PDFBOX-2678
>             Project: PDFBox
>          Issue Type: Bug
>          Components: Text extraction
>    Affects Versions: 1.8.8, 1.8.9, 2.0.0
>            Reporter: nullpointer
>            Assignee: Tilman Hausherr
>            Priority: Minor
>   Original Estimate: 5m
>  Remaining Estimate: 5m
>
> With some PDFs an NPE is thrown.
> Here's the patch for it (referring to trunk):
> {code:java}
> Index: tools/src/main/java/org/apache/pdfbox/tools/ExtractText.java
> ===================================================================
> --- tools/src/main/java/org/apache/pdfbox/tools/ExtractText.java      
> (Revision 1658905)
> +++ tools/src/main/java/org/apache/pdfbox/tools/ExtractText.java      
> (Working Copy)
> @@ -252,7 +252,7 @@
>                                  }
>                                  PDComplexFileSpecification spec = 
> (PDComplexFileSpecification) ent.getValue();
>                                  PDEmbeddedFile file = spec.getEmbeddedFile();
> -                                if (file != null && 
> file.getSubtype().equals("application/pdf"))
> +                                if (file != null && file.getSubtype() != 
> null && file.getSubtype().equals("application/pdf"))
>                                  {
>                                      if (debug)
>                                      {
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to