Blog

Off-by-One Error in Array Manipulation in Solidity

In Solidity, an off-by-one error occurs when an operation mistakenly uses an incorrect index in an array as example, typically by one position. This often happens due to incorrect loop conditions or array index calculations, leading to unintended behavior such as accessing an out-of-bounds element or failing to include/exclude an element.

Arrays are zero-indexed, meaning the first element is accessed with index 0, the second with index 1, and so on, up to the last element which is at length-1. An off-by-one error typically arises in scenarios such as:

Looping through an Array: If you loop through an array but mistakenly set the condition as i <= array.length, instead of i < array.length, the loop will attempt to access array[array.length], which is out of bounds and will cause a runtime error.

Array Length Manipulation: When manipulating the length of an array (e.g., removing elements), if the logic doesn't correctly handle the indices, it can cause an off-by-one error. For instance, if the length is decremented incorrectly, it might underflow or access invalid indices.

Consider this example for an off-by-one error: