[PATCH] D157888: [NFC][Clang] Fix static analyzer concern about null value dereference
Elizabeth Andrews via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Wed Aug 16 14:10:51 PDT 2023
eandrews added inline comments.
================
Comment at: clang/lib/StaticAnalyzer/Checkers/FuchsiaHandleChecker.cpp:657
+ const Stmt *S = AcquireNode->getStmtForDiagnostics();
+ assert(S && "Statmement cannot be null.");
PathDiagnosticLocation LocUsedForUniqueing =
----------------
steakhal wrote:
> I think there is a typo in the word statement.
Thanks for the review. I corrected this in the commit.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D157888/new/
https://reviews.llvm.org/D157888
More information about the cfe-commits
mailing list