]> source.dussan.org Git - poi.git/commitdiff
hwpf: Ignore null argument in PicturesTable.hasPicture
authorMaxim Valyanskiy <maxcom@apache.org>
Mon, 22 Nov 2010 11:10:01 +0000 (11:10 +0000)
committerMaxim Valyanskiy <maxcom@apache.org>
Mon, 22 Nov 2010 11:10:01 +0000 (11:10 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1037670 13f79535-47bb-0310-9956-ffa450edef68

src/scratchpad/src/org/apache/poi/hwpf/model/PicturesTable.java

index d6117ad65ea04997f104e790c9132d34de151eac..f904b6141b3707a93ef55cf6ba2263fd2c3f678a 100644 (file)
@@ -87,6 +87,10 @@ public final class PicturesTable
    * @param run
    */
   public boolean hasPicture(CharacterRun run) {
+    if (run==null) {
+        return false;
+    }
+
     if (run.isSpecialCharacter() && !run.isObj() && !run.isOle2() && !run.isData()) {
        // Image should be in it's own run, or in a run with the end-of-special marker
        if("\u0001".equals(run.text()) || "\u0001\u0015".equals(run.text())) {