From 8c04bbfb5765808c98ec2341af9f6d18364b6a13 Mon Sep 17 00:00:00 2001 From: Ben Rodes Date: Tue, 30 Jan 2024 09:19:49 -0500 Subject: [PATCH] Update cpp/ql/src/change-notes/2024-01-29-uninitialized-local-false-positive.md Co-authored-by: Mathias Vorreiter Pedersen --- .../2024-01-29-uninitialized-local-false-positive.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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