Age | Commit message (Expand) | Author |
2013-01-12 | Add a comment to test to clarify the intention here | Dmitri Gribenko |
2012-09-08 | Format strings: suggest %lld instead of %qd and %Ld with -Wformat-non-iso. | Jordan Rose |
2012-09-08 | Format strings: %Ld isn't available on Darwin or Windows. | Jordan Rose |
2012-08-07 | Properly check length modfiers for %n in format strings. | Hans Wennborg |
2012-07-31 | -Wformat: better handling of qualifiers on pointer arguments | Hans Wennborg |
2012-07-30 | Do not warn on correct use of the '%n' format specifier. | Matt Beaumont-Gay |
2012-07-30 | Make -Wformat check the argument type for %n. | Hans Wennborg |
2012-05-17 | Use the argument location instead of the format string location when warning | Matt Beaumont-Gay |
2012-05-11 | Merge branch 'format-string-braced-init' | Matt Beaumont-Gay |
2012-05-11 | Fix a recent regression with the merging of format attributes. | Rafael Espindola |
2012-05-08 | Make -Wformat accept printf("%hhx", c); with -funsigned-char | Hans Wennborg |
2012-05-04 | Add a predefine __WINT_UNSIGNED__, similar to __WCHAR_UNSIGNED__, and test th... | James Molloy |
2012-05-04 | Fix handling of wint_t - we can't assume wint_t is purely an integer promotio... | James Molloy |
2012-05-03 | Add a test for r156092. | Bob Wilson |
2012-02-22 | Warn about non-standard format strings (pr12017) | Hans Wennborg |
2012-02-21 | When calling a non variadic format function(vprintf, vscanf, NSLogv, …), wa... | Jean-Daniel Dupas |
2012-02-16 | Format string analysis: give 'q' its own enumerator. | Hans Wennborg |
2012-02-13 | Fix typo in PrintfConversionSpecifier::isDoubleArg() | Hans Wennborg |
2012-02-07 | non-literal strftime format string is not unsafe. | Jean-Daniel Dupas |
2012-01-31 | FormatCheckers should emit all diagnostics using EmitFormatDiagnostic(). | Jean-Daniel Dupas |
2012-01-30 | Update on format attribute handling. | Jean-Daniel Dupas |
2012-01-24 | Teach scanf/printf checking about '%Ld' and friends (a GNU extension). Fixes... | Ted Kremenek |
2012-01-20 | Tighten format string diagnostic and make it a bit clearer (and a bit closer ... | Ted Kremenek |
2011-10-28 | Fix for PR9751 to change the behavior of -Wformat warnings. If the format | Richard Trieu |
2011-10-25 | Tweak printf format string parsing to accept 'hh' conversion specifier to acc... | Ted Kremenek |
2011-09-29 | Do not warn about empty format strings when there are no data arguments. Fix... | Ted Kremenek |
2011-08-27 | Control 'invalid conversion specifier' warnings under a subflag (-Wformat-inv... | Ted Kremenek |
2011-07-14 | Revert r135147 and r135075. The consensus was that this wasn't the right thi... | Ted Kremenek |
2011-07-14 | Reapply r135075, but modify format-strings.c and format-strings-fixit.c test ... | Ted Kremenek |
2011-07-13 | Re-relax conversion specifier checking for printf format strings and conversi... | Ted Kremenek |
2011-07-13 | Fix inversion in argument type checking for format strings with conversion sp... | Ted Kremenek |
2011-06-15 | Don't add redundant FormatAttr, ConstAttr, or NoThrowAttr attributes, | Douglas Gregor |
2011-02-24 | Don't warn about using PredefinedExprs as format string literals. These neve... | Ted Kremenek |
2011-02-21 | Allow -Wformat to be enabled without -Wformat-security. GCC gates | Chandler Carruth |
2011-01-08 | Add semantic checking that the "thousands grouping" | Ted Kremenek |
2011-01-08 | Add printf format string parsing support for ' | Ted Kremenek |
2010-12-02 | Fix range in printf warnings for invalid conversion specifiers. | Ted Kremenek |
2010-11-21 | The 'X' printf type has a valid alternative form. Fixes PR8641. | Anders Carlsson |
2010-10-21 | Previously, the printf warnings would say your arguments type was 'int' when ... | Ted Kremenek |
2010-09-09 | Check format strings when a called function has more than one FormatAttr (one... | Ted Kremenek |
2010-09-09 | It appears that technically a null format string is not warned under -Wformat... | Ted Kremenek |
2010-08-24 | Fix printf format string checking for '%lc' (which expects a wint_t or compat... | Ted Kremenek |
2010-07-19 | Don't warn when a '%%' or '%*d' (scanf) is used in a format string with posit... | Ted Kremenek |
2010-06-21 | Bug 7377: printf checking fails to flag some undefined behavior | 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-05-26 | Tell the string literal parser when it's not permitted to emit | Douglas Gregor |
2010-04-22 | Whenever we complain about a failed initialization of a function or | Douglas Gregor |
2010-03-25 | Fix two bugs in format-string checking: | Ted Kremenek |