CPP: Add change notes for the non-returning function improvements.

This commit is contained in:
Alex Eyers-Taylor
2023-09-08 11:26:01 +01:00
parent 43a72f2a8e
commit e208a7aed6
2 changed files with 10 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
---
category: minorAnalysis
---
* Functions that do not return due to calling functions that don't return (e.g. `exit`) are now detected as
non returning in the IR and dataflow.

View File

@@ -0,0 +1,5 @@
---
category: minorAnalysis
---
* The queries `cpp/double-free` and `cpp/use-after-free` find fewer false positives
in cases where a non-returning function is called.