mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2024-11-27 13:56:24 +00:00
Fix range check bug in FileList::seek() (#13286)
When `count()` returns 0, `pos > (count()-1)` will always yield `true` due to integer underflow.
This commit is contained in:
parent
05c2f80826
commit
57afd0ab37
@ -688,7 +688,7 @@ namespace ExtUI {
|
|||||||
|
|
||||||
bool FileList::seek(const uint16_t pos, const bool skip_range_check) {
|
bool FileList::seek(const uint16_t pos, const bool skip_range_check) {
|
||||||
#if ENABLED(SDSUPPORT)
|
#if ENABLED(SDSUPPORT)
|
||||||
if (!skip_range_check && pos > (count() - 1)) return false;
|
if (!skip_range_check && (pos + 1) > count()) return false;
|
||||||
const uint16_t nr =
|
const uint16_t nr =
|
||||||
#if ENABLED(SDCARD_RATHERRECENTFIRST) && DISABLED(SDCARD_SORT_ALPHA)
|
#if ENABLED(SDCARD_RATHERRECENTFIRST) && DISABLED(SDCARD_SORT_ALPHA)
|
||||||
count() - 1 -
|
count() - 1 -
|
||||||
|
Loading…
Reference in New Issue
Block a user