Skip to content

Commit

Permalink
Merge pull request #66 from Serubin/master
Browse files Browse the repository at this point in the history
Fix SignalPdu unmarshal size issue
  • Loading branch information
leif81 authored Aug 9, 2019
2 parents 2cc3f1a + 8bf833d commit bfd132c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/edu/nps/moves/disutil/PduFactory.java
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@ public List<Pdu> getPdusFromBundle(byte data[])
}

// Advance the index to the start of the next PDU
int pduLength = pdu.getLength();
int pduLength = pdu.getPduLength();
pduStartPointInData = pduStartPointInData + pduLength;

//System.out.println("PDUStartPOint:" + pduStartPointInData + " data: " + data.length);
Expand Down

0 comments on commit bfd132c

Please sign in to comment.