[clang-doc] Add check for pointer validity
authorPaul Kirth <paulkirth@google.com>
Fri, 22 Jul 2022 17:34:58 +0000 (17:34 +0000)
committerPaul Kirth <paulkirth@google.com>
Fri, 22 Jul 2022 17:36:30 +0000 (17:36 +0000)
commit30360d88d42214e75215145c4e73a74aaf93ddfd
treee869e3e52b56dfb6ded5e718163a4ce64d3a0c01
parent3b0c78fe3bc9e20061e38935ca6d4fb435027f41
[clang-doc] Add check for pointer validity

clang-doc would SEGV when running over the Fuchsia code base.
This patch adds a check to avoid dereferencing potentially null pointers
in the Values vector. These pointers were either never valid or had been
invalidated when the underlying pointer in std::unique_ptr was moved from,
hence making it nullptr within the vector.

Reviewed By: phosek

Differential Revision: https://reviews.llvm.org/D130279
clang-tools-extra/clang-doc/Representation.cpp