diff --git a/cpp/ql/src/change-notes/2024-01-29-uninitialized-local-false-positive.md b/cpp/ql/src/change-notes/2024-01-29-uninitialized-local-false-positive.md index 05b817532e6..0d07482b755 100644 --- a/cpp/ql/src/change-notes/2024-01-29-uninitialized-local-false-positive.md +++ b/cpp/ql/src/change-notes/2024-01-29-uninitialized-local-false-positive.md @@ -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. \ No newline at end of file +* 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. +* ``` \ No newline at end of file