Posts by this author

May 3, 2024
2
2

New Checks Since Visual Studio 2022 17.8

The C++ team is committed to making your C++ coding experience as safe as possible. In the last couple of releases, we added new safety checks based on the requests of internal customers like the Windows group. Below is the overview of the new checks. For additional information for each of the checks, please refer to the linked help documents. C63...

C++New FeatureDiagnostics
May 6, 2021
6
0

Ignoring Automatic Initialization for Code Analysis

Reading uninitialized memory is one of the major sources of security vulnerabilities in C and C++ programs. Microsoft developed many tools to find such errors including compiler warnings, static analysis checks, and more recently: code instrumentation.  For a more detailed overview of uninitialized memory related vulnerabilities and mitigations ple...

C++