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: [email protected]
For additional commands, e-mail: [email protected]