Details
-
Type:
Bug
-
Status:
Resolved
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 6.1.25
-
Fix Version/s: 6.1.26
-
Component/s: None
-
Labels:None
-
Environment:Windows 7 / Java 1.6 update 18
-
Patch Submitted:Yes
-
Number of attachments :
Description
At line 117 within J2SE6ContextHandler.java there is a check to see if the local variable filters is non-null. However, on line 119 the subList() method is called with the following parameters subList(1,filters.size()). This does not account for filters of size() < 1. I have implemented the following change to line 117:
if (filters != null && (filters.size() > 0))
This has helped my environment with running this SPI module. This is my first time submitting a bug, so I hope I am somewhat close to the propper procedure.