- fixed bug in range of GOOSE APPID
This commit is contained in:
parent
8521a42f0d
commit
16fe7c2a7c
3 changed files with 1 additions and 1 deletions
Binary file not shown.
Binary file not shown.
|
@ -55,7 +55,7 @@ public class GSEAddress {
|
|||
else if (type.equals("APPID")) {
|
||||
appId = Integer.parseInt(pNode.getTextContent(), 16);
|
||||
|
||||
if (appId > 0xfff)
|
||||
if (appId > 0xffff)
|
||||
throw new SclParserException(addressNode, "APPID value out of range");
|
||||
}
|
||||
else if (type.equals("MAC-Address")) {
|
||||
|
|
Loading…
Add table
Reference in a new issue