fix ArrayIndexOutOfBoundsException
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1149617 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
e9b2bef3e8
commit
23c635aa24
@ -132,7 +132,11 @@ public abstract class AbstractWordConverter
|
||||
TableCell upperCell = null;
|
||||
for ( int r1 = r - 1; r1 >= 0; r1-- )
|
||||
{
|
||||
final TableCell prevCell = table.getRow( r1 ).getCell( c );
|
||||
final TableRow row = table.getRow( r1 );
|
||||
if ( row == null || c >= row.numCells() )
|
||||
continue;
|
||||
|
||||
final TableCell prevCell = row.getCell( c );
|
||||
if ( prevCell != null && prevCell.isFirstVerticallyMerged() )
|
||||
{
|
||||
upperCell = prevCell;
|
||||
|
Loading…
Reference in New Issue
Block a user