index
:
emscripten-fastcomp-clang
master
emscripten clang
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
include
/
clang
/
Analysis
/
Analyses
/
PrintfFormatString.h
Age
Commit message (
Expand
)
Author
2010-07-16
Add most of the boilerplate support for scanf format string checking. This i...
Ted Kremenek
2010-06-18
Printf format strings: Added some more tests and fixed some minor bugs.
Tom Care
2010-06-17
Bug 7394 - Fixed toString representation of Precisions in format strings.
Tom Care
2010-06-17
Bug 7377: Fixed several bad printf format string bugs.
Tom Care
2010-06-17
Fix format string checking of '%c' by treating it as an integer conversion. ...
Ted Kremenek
2010-06-16
Extend format string type-checking to include '%p'. Fixes remaining cases PR...
Ted Kremenek
2010-06-09
Added FixIt support to printf format string checking.
Tom Care
2010-02-27
Add reference to positional arguments documentation.
Ted Kremenek
2010-02-27
For printf format string checking, add support for positional format strings.
Ted Kremenek
2010-02-26
For printf format string checking, move the tracking of the data argument ind...
Ted Kremenek
2010-02-24
Add support for '%C' and '%S' printf conversion specifiers.
Ted Kremenek
2010-02-16
Refactor the logic for printf argument type-checking into analyze_printf::Arg...
Ted Kremenek
2010-02-16
Added 'AsWideChar' flag to LengthModifier.
Ted Kremenek
2010-02-11
Patch by Cristian Draghici:
Ted Kremenek
2010-02-04
Move ParseFormatString() and FormatStringHandler back into the analyze_printf...
Ted Kremenek
2010-02-04
Convert flags in FormatSpecifier to be bitfields instead of doing
Ted Kremenek
2010-01-30
Recognize 'q' as a format length modifier (from BSD).
Daniel Dunbar
2010-01-30
Silence clang++ warning.
Benjamin Kramer
2010-01-29
Per a suggestion from Cristian Draghici, add a method to FormatSpecifier that...
Ted Kremenek
2010-01-29
Enhancements to the alternate (WIP) format string checking:
Ted Kremenek
2010-01-29
Fix typo found by clang++. Yay for -Wuninitialized.
Benjamin Kramer
2010-01-29
Alternate format string checking: issue warnings for incomplete format specif...
Ted Kremenek
2010-01-29
Alternate format string checking: issue a warning for invalid conversion spec...
Ted Kremenek
2010-01-29
Alternate format string checking: warn of '%n' as being potentially insecure.
Ted Kremenek
2010-01-29
Add precision/field width checking to AlternateCheckPrintfString().
Ted Kremenek
2010-01-28
Add position of conversion specifier character to 'ConversionSpecifier'.
Ted Kremenek
2010-01-28
Rename namespace clang::printf to clang::analyze_printf to avoid problems whe...
Ted Kremenek
2010-01-28
Allow HandleFormatSpecifier() to indicate that no more processing of the form...
Ted Kremenek
2010-01-28
Add '@' conversion specifier.
Ted Kremenek
2010-01-27
Add skeleton for a more structured way to analyzing pring format
Ted Kremenek