[PATCH] D45564: [analyzer] Fix null deref in AnyFunctionCall::getRuntimeDefinition
Rafael Stahl via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Thu Apr 12 05:14:40 PDT 2018
r.stahl added a comment.
I encountered this with a construct like this:
struct S
{
void (*fp)();
};
int main()
{
struct S s;
s.fp();
}
Repository:
rC Clang
https://reviews.llvm.org/D45564
More information about the cfe-commits
mailing list