Files
codeql/change-notes/1.26/analysis-cpp.md
Geoffrey White 5d485859af Merge remote-tracking branch 'upstream/main' into
uncontrolled-alloc-size
2020-08-17 20:49:35 +01:00

1.5 KiB

Improvements to C/C++ analysis

The following changes in version 1.26 affect C/C++ analysis in all applications.

General improvements

New queries

Query Tags Purpose

Changes to existing queries

Query Expected impact Change
Inconsistent direction of for loop (cpp/inconsistent-loop-direction) Fewer false positive results The query now accounts for intentional wrapping of an unsigned loop counter.
Overflow in uncontrolled allocation size (cpp/uncontrolled-allocation-size) The precision of this query has been decreased from "high" to "medium". As a result, the query is still run but results are no longer displayed on LGTM by default.
Comparison result is always the same (cpp/constant-comparison) More correct results Bounds on expressions involving multiplication can now be determined in more cases.

Changes to libraries

  • The models library now models more taint flows through std::string.
  • The SimpleRangeAnalysis library now supports multiplications of the form e1 * e2 when e1 and e2 are unsigned.