Skip to content

Commit

Permalink
Merge pull request #23 from joeclarkia/feature/entity-marking-fix-2
Browse files Browse the repository at this point in the history
Fix EntityMarking characters array size: 12 -> 11
  • Loading branch information
leif81 authored Jul 21, 2023
2 parents 60c7e9c + 87f110e commit fb80b57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dis7/EntityMarking.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ dis.EntityMarking = function()
this.characterSet = 0;

/** The characters */
this.characters = new Array(12);
this.characters = new Array(11);

// ensure null-terminated string
this.characters[0] = 0;
Expand Down

0 comments on commit fb80b57

Please sign in to comment.