aboutsummaryrefslogtreecommitdiff
path: root/clang/test/Analysis/cstring-syntax-cxx.cpp
AgeCommit message (Collapse)AuthorFilesLines
2013-04-10[analyzer] Fix a crash in SyntaxCString checker when given a custom strncat.Anna Zaks1-0/+5
Fixes PR13476 llvm-svn: 179228
2012-10-19Prior to adding the new "expected-no-diagnostics" directive to ↵Andy Gibbs1-0/+1
VerifyDiagnosticConsumer, make the necessary adjustment to 580 test-cases which will henceforth require this new directive. llvm-svn: 166280
2012-02-20[analyzer] Turn on by default the Malloc Checker and a couple of CStringAnna Zaks1-1/+1
checks: - unix.Malloc - Checks for memory leaks, double free, use-after-free. - unix.cstring.NullArg - Checks for null pointers passed as arguments to CString functions + evaluates CString functions. - unix.cstring.BadSizeArg - Checks for common anti-patterns in strncat size argument. llvm-svn: 150988
2012-02-01[analyzer] Fix a crash in CheckerContext::isCLibraryFunction for C++Anna Zaks1-0/+16
declarations with special names. A patch by Dmitri Gribenko. llvm-svn: 149525