Use that for internal names (including the default ignorelists of the sanitizers). Differential Revision: https://reviews.llvm.org/D101832
6 lines
151 B
C++
6 lines
151 B
C++
// This function is broken, but this file is ignorelisted
|
|
int externalBrokenFunction(int argc) {
|
|
char x[10] = {0};
|
|
return x[argc * 10]; // BOOM
|
|
}
|