From b4ff60a5a874e28948ffd6b2bcccc7cac439f9e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Fri, 7 Feb 2025 15:28:04 +0000 Subject: [PATCH] Fixup #4626 (Write about new checker in releasenotes) [skip ci] (#7166) --- releasenotes.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/releasenotes.txt b/releasenotes.txt index 72c2bf5785d..0114862e68c 100644 --- a/releasenotes.txt +++ b/releasenotes.txt @@ -3,6 +3,7 @@ Release Notes for Cppcheck 2.17 New checks: - staticFunction: detect functions that should have internal linkage since they are not used outside of their translation unit. +- Check null pointer return from memory/resource allocation functions (nullPointerOutOfMemory, nullPointerArithmeticOutOfMemory, nullPointerOutOfResources, ctunullpointerOutOfMemory, ctunullpointerOutOfResources). Improved checking: -