mirror of
https://github.com/github/codeql.git
synced 2026-04-26 17:25:19 +02:00
478 B
478 B
0.6.0
New Queries
- The query
cpp/redundant-null-check-simplehas been promoted to Code Scanning. The query finds cases where a pointer is compared to null after it has already been dereferenced. Such comparisons likely indicate a bug at the place where the pointer is dereferenced, or where the pointer is compared to null.
Minor Analysis Improvements
- The query
cpp/tainted-arithmeticnow also flags possible overflows in arithmetic assignment operations.