fix: correct TxFieldSelector index upper bound
This commit is contained in:
parent
43e3983e4b
commit
e3c4dede41
@ -174,7 +174,7 @@ fn parse_inout_selection(
|
|||||||
(current_input_idx as isize + rel) as usize
|
(current_input_idx as isize + rel) as usize
|
||||||
};
|
};
|
||||||
|
|
||||||
if idx > nb_items {
|
if idx >= nb_items {
|
||||||
return Err("selected index out of bounds");
|
return Err("selected index out of bounds");
|
||||||
}
|
}
|
||||||
if let Some(last) = selected.last() {
|
if let Some(last) = selected.last() {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user