You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@pdfbox.apache.org by "nullpointer (JIRA)" <ji...@apache.org> on 2015/02/11 18:47:11 UTC

[jira] [Created] (PDFBOX-2678) possible NPE in ExtractText tool of trunk

nullpointer created PDFBOX-2678:
-----------------------------------

             Summary: 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
            Reporter: nullpointer
            Priority: Minor


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: dev-unsubscribe@pdfbox.apache.org
For additional commands, e-mail: dev-help@pdfbox.apache.org