Details
-
Bug
-
Status: Resolved
-
Resolution: Done
-
unspecified
-
None
-
None
-
Operating System: All
Platform: All
-
5879
-
Lowest
Description
In file SfcScfOfProcessor.java starting at line 135:
String ruleName = ace.getRuleName();
if (ruleName == null) {
LOG.error("createdServiceFunctionClassifier: ruleName is null\n");
continue;
}
....
// Action
Actions actions = ace.getActions();
if (ruleName == null) {
LOG.error("createdServiceFunctionClassifier: action is null\n");
continue;
}
The second check on ruleName seems a copy&paste duplicate, it should be checking variable actions instead.