]> Kevux Git Server - fll/commit
Bugfix: Incorrect stop position is calculated when FSS content ends at the start...
authorKevin Day <kevin@kevux.org>
Wed, 24 Jan 2024 05:54:07 +0000 (23:54 -0600)
committerKevin Day <kevin@kevux.org>
Wed, 24 Jan 2024 05:54:07 +0000 (23:54 -0600)
commitba257a8b8385ec8dedfc9bc9bb596e420ca552f8
tree239f771c847d7ab5de8d5e46c4a78ebba01ea958
parent8713008ebf8fc83004163379bd2ac400c554b388
Bugfix: Incorrect stop position is calculated when FSS content ends at the start position on FSS read operations.

When the start position is say, 0, and the determined stop position ends up being 0, then an incorrect stop range is calculated.
This happens because the stop position is subtracting one from the current position.

Add checks to ensure that the stop position is never subtracted beyond the initial start position.

The initial start position is saved at the beginning of each affected FSS read function.

This now potentially returns a start range before the stop range.
The FSS read programs should also need to be updated following this commit to handle these cases.
level_1/fl_fss/c/fss/basic.c
level_1/fl_fss/c/fss/basic_list.c
level_1/fl_fss/c/fss/embedded_list.c
level_1/fl_fss/c/fss/extended_list.c
level_1/fl_fss/c/private-fss.c