Regression analysis: the additional testing of cloning sheets showed a
possible ArrayIndexOutOfBounds error which we can avoid to make cloning fail a bit less. git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1730274 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
eeee511f71
commit
c68a9e4c02
@ -214,9 +214,11 @@ public class HSSFPicture extends HSSFSimpleShape implements Picture {
|
||||
void afterInsert(HSSFPatriarch patriarch) {
|
||||
EscherAggregate agg = patriarch.getBoundAggregate();
|
||||
agg.associateShapeToObjRecord(getEscherContainer().getChildById(EscherClientDataRecord.RECORD_ID), getObjRecord());
|
||||
EscherBSERecord bse =
|
||||
patriarch.getSheet().getWorkbook().getWorkbook().getBSERecord(getPictureIndex());
|
||||
bse.setRef(bse.getRef() + 1);
|
||||
if(getPictureIndex() != -1) {
|
||||
EscherBSERecord bse =
|
||||
patriarch.getSheet().getWorkbook().getWorkbook().getBSERecord(getPictureIndex());
|
||||
bse.setRef(bse.getRef() + 1);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
BIN
test-data/spreadsheet/florida_data.ashx.xls
Normal file
BIN
test-data/spreadsheet/florida_data.ashx.xls
Normal file
Binary file not shown.
Loading…
Reference in New Issue
Block a user