mirror of
https://github.com/nix-community/nix-on-droid-app.git
synced 2025-11-24 11:19:44 +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 {
|
} else {
|
||||||
value = thisDigit;
|
value = thisDigit;
|
||||||
}
|
}
|
||||||
|
if (value > 9999)
|
||||||
|
value = 9999;
|
||||||
mArgs[mArgIndex] = value;
|
mArgs[mArgIndex] = value;
|
||||||
}
|
}
|
||||||
continueSequence(mEscapeState);
|
continueSequence(mEscapeState);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue