]> Kevux Git Server - fll/commit
Bugfix: Incorrect index usages in f_console_parameter_process().
authorKevin Day <Kevin@kevux.org>
Sat, 22 Nov 2025 16:12:20 +0000 (10:12 -0600)
committerKevin Day <Kevin@kevux.org>
Sat, 22 Nov 2025 16:12:20 +0000 (10:12 -0600)
commit4b2746e0f73f41cc67f093db44304c147eb33a1c
tree3e0d97347f2d11c6afc4bee3b1c5b78e4a3551fb
parent7bdc52bc2be8960746a0dacc4b904c340f0deb77
Bugfix: Incorrect index usages in f_console_parameter_process().

Switch to use a pointer called `current` to simplify the code a little.

The unicode charater processing is accessing index `i` out of scope.

The process short list is accessing index `i` out of scope.

Utilize the `current` pointer to help better manage avoiding accessing index `i` out of scope.
level_0/f_console/c/console.c