Update cpp/ql/src/change-notes/2024-01-29-uninitialized-local-false-positive.md

Co-authored-by: Mathias Vorreiter Pedersen <mathiasvp@github.com>
This commit is contained in:
Ben Rodes
2024-01-30 09:19:49 -05:00
committed by GitHub
parent 13cf555cee
commit 8c04bbfb57

View File

@@ -1,4 +1,5 @@
---
category: minorAnalysis
---
* Corrected a false positive with `cpp/uninitialized-local`: `a->func()` is a false positive if `func` is static regardless of if `a` is initializeed.
* The "Potentially uninitialized local variable" query (`cpp/uninitialized-local`) no longer reports an alert when the local variable is used as a qualifier to a static member function call.
* ```