Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
2.2.2S
-
None
Description
in org.apache.uima.simpleserver.config.impl.SimpleFilterImpl
private final boolean match(Stack<String> stack, FeatureStructure fs) {
...
fs can be null (if a non-leave feature in the feature path is null) but that is not checked for.
Suggested fix:
private final boolean match(Stack<String> stack, FeatureStructure fs) {
if (fs == null)
if (stack.isEmpty()) {
...