llvm-project/clang/test/Analysis/cxx-method-names.cpp
Jordan Rose 6cd16c5152 [analyzer] Guard against C++ member functions that look like system functions.
C++ method calls and C function calls both appear as CallExprs in the AST.
This was causing crashes for an object that had a 'free' method.

<rdar://problem/11822244>

llvm-svn: 160029
2012-07-10 23:13:01 +00:00

22 lines
554 B
C++

// RUN: %clang_cc1 -analyze -analyzer-checker=core,unix,osx,experimental.unix,experimental.security.taint -analyzer-store region -verify %s
class Evil {
public:
void system(int); // taint checker
void malloc(void *); // taint checker, malloc checker
void free(); // malloc checker, keychain checker
void fopen(); // stream checker
void feof(int, int); // stream checker
void open(); // unix api checker
};
void test(Evil &E) {
// no warnings, no crashes
E.system(0);
E.malloc(0);
E.free();
E.fopen();
E.feof(0,1);
E.open();
}