ArrayBoundV2 -- Access to an Element Out of Array's Boundaries
Go Up to C++ Audits
Description
This audit checks whether an array index expression is out of the array's boundaries. For example, this violation can mean that the index expression either always produces negative values, or its minimal value is greater than or equal to the maximum possible length of the accessed array.
The ArrayBoundV2 audit is the counterpart to ArrayBound -- Access to an Element Out of Array's Boundaries.