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
}
Locating this inspection
- By ID
Can be used to locate inspection in e.g. Qodana configuration files, where you can quickly enable or disable it, or adjust its settings.
ArrayIndexOutOfBounds- Via Settings dialog
Path to the inspection settings via IntelliJ Platform IDE Settings dialog, when you need to adjust inspection settings directly from your IDE.
New in 2022.2
Inspection Details | |
---|---|
By default bundled with: | |
Can be installed with plugin: | CLion, 2024.2 |
Last modified: 11 September 2024