Skip to content

Commit fb80b57

Browse files
authored
Merge pull request #23 from joeclarkia/feature/entity-marking-fix-2
Fix EntityMarking characters array size: 12 -> 11
2 parents 60c7e9c + 87f110e commit fb80b57

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/dis7/EntityMarking.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ dis.EntityMarking = function()
2323
this.characterSet = 0;
2424

2525
/** The characters */
26-
this.characters = new Array(12);
26+
this.characters = new Array(11);
2727

2828
// ensure null-terminated string
2929
this.characters[0] = 0;

0 commit comments

Comments
 (0)