Skip to content

Commit

Permalink
Fixed: Ensure CSI parameter value is not greater than 9999 as per v…
Browse files Browse the repository at this point in the history
…t510
  • Loading branch information
agnostic-apollo committed Jun 17, 2024
1 parent fbf55fd commit 9433f10
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2136,6 +2136,8 @@ private void parseArg(int inputByte) {
} else {
value = thisDigit;
}
if (value > 9999)
value = 9999;
mArgs[mArgIndex] = value;
}
continueSequence(mEscapeState);
Expand Down

0 comments on commit 9433f10

Please sign in to comment.