index
:
emscripten-fastcomp-clang
master
emscripten clang
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
test
/
Analysis
/
string.c
Age
Commit message (
Expand
)
Author
2011-12-11
[analyzer] CStringChecker should not rely on the analyzer generating UndefOrU...
Anna Zaks
2011-08-03
[analyzer] rename all experimental checker packages to have 'experimental' be...
Ted Kremenek
2011-06-28
[analyzer] strnlen isn't a builtin, don't test for it
Jordy Rose
2011-06-20
[analyzer] Finish size argument checking for strncat (and strncpy).
Jordy Rose
2011-06-20
[analyzer] Re-enable checking for strncpy, along with a new validation of the...
Jordy Rose
2011-06-20
[analyzer] Eliminate "byte string function" from CStringChecker's diagnostics...
Jordy Rose
2011-06-16
[analyzer] Clean up modeling of strcmp, including cases where a string litera...
Jordy Rose
2011-06-15
[analyzer] Revise CStringChecker's modelling of strcpy() and strcat():
Jordy Rose
2011-06-14
[analyzer] CStringChecker checks functions in the C standard library, not C++...
Jordy Rose
2011-06-14
[analyzer] Fix modeling of strnlen to be more conservative. Move tests we can...
Jordy Rose
2011-05-03
Removing strncpy() checking in CString checker for now. Some significant chan...
Lenny Maiorani
2011-05-02
Implements strncasecmp() checker and simplifies some of the logic around crea...
Lenny Maiorani
2011-04-28
Implements strcasecmp() checker in Static Analyzer.
Lenny Maiorani
2011-04-26
Emit a -Wnull-dereference warning for "*null" not just "*null = something". A...
Argyrios Kyrtzidis
2011-04-25
Implements the strncmp() checker just like the strcmp() checker, but with bou...
Lenny Maiorani
2011-04-15
fix a bunch of comment typos found by codespell. Patch by
Chris Lattner
2011-04-12
This patch adds modeling of strcmp() to the CString checker. Validates inputs...
Lenny Maiorani
2011-04-09
strcat() and strncat() model additions to CStringChecker.
Lenny Maiorani
2011-03-24
Rework checker "packages" and groups to be more hierarchical.
Ted Kremenek
2011-03-07
Fix tests to account for new warning "expected ';' at end of declaration list...
Carl Norum
2011-02-28
[analyzer] Remove '-analyzer-check-objc-mem' flag, the nominee for best misno...
Argyrios Kyrtzidis
2011-02-28
[analyzer] Migrate NSErrorChecker and DereferenceChecker to CheckerV2.
Argyrios Kyrtzidis
2011-02-24
Allow passing a list of comma separated checker names to -analyzer-checker, e.g:
Argyrios Kyrtzidis
2011-02-22
Add CStringChecker support for strncpy. Patch by Lenny Maiorani!
Ted Kremenek
2011-02-22
Add CStringChecker support for strnlen. Patch by Lenny Maiorani!
Ted Kremenek
2011-02-15
[analyzer] Use the new registration mechanism on some of the experimental che...
Argyrios Kyrtzidis
2010-08-16
Model the effects of strcpy() and stpcpy() in CStringChecker. Other changes:
Jordy Rose
2010-08-14
Update CStringChecker to take advantage of the new metadata symbols and regio...
Jordy Rose
2010-07-27
Added some false positive checking to UnreachableCodeChecker
Tom Care
2010-07-27
Groundwork for C string length tracking. Currently only handles the length of...
Jordy Rose