Multiple
Array Index Out Of Bounds
Warning
New
Last modified: 03 December 2024Reports 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
}
- 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
New in 2022.2
Inspection Details | |
---|---|
By default bundled with: | |
Can be installed with plugin: | CLion, 2024.3 |
Thanks for your feedback!
Was this page helpful?