Inspectopedia Help

Array Index Out Of Bounds

Reports array or pointer variable access expressions where index may be out of bounds of an array or allocated buffer.

Example:

void foo() { int buffer[100]; for (int i = 0; i <= 100; i ++) buffer[i] = 0; // buffer overflow when i is equal to 100 }

New in 2022.2

Inspection Details

Available in:

AppCode 2023.3, CLion 2023.3

Plugin:

CLion, 2023.3

Last modified: 13 July 2023