You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
437 B
19 lines
437 B
// RUN: %clang_analyze_cc1 -analyzer-checker=osx,unix,core,alpha.security.taint -w -verify %s
|
|
// expected-no-diagnostics
|
|
|
|
// Make sure we don't crash when someone redefines a system function we reason about.
|
|
|
|
char memmove ();
|
|
char malloc();
|
|
char system();
|
|
char stdin();
|
|
char memccpy();
|
|
char free();
|
|
char strdup();
|
|
char atoi();
|
|
|
|
int foo () {
|
|
return memmove() + malloc() + system() + stdin() + memccpy() + free() + strdup() + atoi();
|
|
|
|
}
|