]> source.dussan.org Git - poi.git/commitdiff
fix NPE
authorJaven O'Neal <onealj@apache.org>
Thu, 22 Sep 2016 04:02:56 +0000 (04:02 +0000)
committerJaven O'Neal <onealj@apache.org>
Thu, 22 Sep 2016 04:02:56 +0000 (04:02 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1761844 13f79535-47bb-0310-9956-ffa450edef68

src/ooxml/java/org/apache/poi/xssf/usermodel/helpers/ColumnHelper.java

index 1e51e5e3f79d00d4424644a82b70816ce121bda9..b27100656beae45abe195a4b59afc2dddfceacd7 100644 (file)
@@ -319,6 +319,7 @@ public class ColumnHelper {
     }
 
     public int getIndexOfColumn(CTCols cols, CTCol searchCol) {
+        if (cols == null || searchCol == null) return -1;
         int i = 0;
         for (CTCol col : cols.getColArray()) {
             if (col.getMin() == searchCol.getMin() && col.getMax() == searchCol.getMax()) {