Being a static analysis nerd, I was looking forward to a PVS-Studio analysis for a long time.
It is worth pointing out that many of the findings are actually the in 3rd-party libraries libuv, libcurl, rhash, and libarchive. Especially the last one seems to contribute many issues. You might want to analyze this one next?
The remaining issues come from CTest, CPack, and the Visual Studio specific code. I am surprised the the core of CMake is actually pretty clean.
The linked report claims a memory leak in cmCTestMultiProcessHandler::StartTestProcess but there is no leak. In the case that StartTest returns true then ownership of the cmCTestRunTest instance has been moved to another structure. When the test finishes FinishTestProcess will be called later to delete it. Some refactoring could be done to clarify this and help static analysis tools understand it.