mirror of
https://github.com/nix-community/nix-on-droid-app.git
synced 2025-11-24 03:09:43 +01:00
Fixed: Ensure CSI parameter value is not greater than 9999 as per vt510
This commit is contained in:
parent
fbf55fd40c
commit
9433f10757
1 changed files with 2 additions and 0 deletions
|
|
@ -2136,6 +2136,8 @@ public final class TerminalEmulator {
|
|||
} else {
|
||||
value = thisDigit;
|
||||
}
|
||||
if (value > 9999)
|
||||
value = 9999;
|
||||
mArgs[mArgIndex] = value;
|
||||
}
|
||||
continueSequence(mEscapeState);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue