Skip to content

Commit

Permalink
- Summary:
Browse files Browse the repository at this point in the history
Fix TED – Issue 45481 [BZ]java.lang.ArrayIndexOutOfBoundsException
during PDF rendition
- Description of Issue:
Fix TED – Issue 45481 [BZ]java.lang.ArrayIndexOutOfBoundsException
during PDF rendition
- Description of Resolution:
A type error, the length of array should be 4, so the max index should
be 3.
- TED(s) Resolved:
45481
- Regression ( Yes/No ):
No
- Code Owner Team:
Report Engine
- Code Reviewers:
TBD
- Project ID:
1476
- Manual Test Description:

- Tests Automated Cases Executed:

- Special Notes:
Affected files ...
  • Loading branch information
gliu committed Dec 12, 2011
1 parent 0235155 commit 77d06f8
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -93,7 +93,7 @@ public void process( StringBuffer buffer, String value,
buildMargin( buffer, vs[0], vs[1], vs[2], vs[1] );
break;
case 4 :
buildMargin( buffer, vs[0], vs[1], vs[2], vs[4] );
buildMargin( buffer, vs[0], vs[1], vs[2], vs[3] );
break;
}
}
Expand Down

0 comments on commit 77d06f8

Please sign in to comment.