Commit fix for a static analyzer issue where a string pointer could theoretically be NULL..

llvm-svn: 226366
This commit is contained in:
Enrico Granata 2015-01-17 02:46:20 +00:00
parent 71e377d6ee
commit 5b8cacdb5f
1 changed files with 15 additions and 9 deletions

View File

@ -68,6 +68,8 @@ size_t
TypeFilterImpl::FrontEnd::GetIndexOfChildWithName (const ConstString &name)
{
const char* name_cstr = name.GetCString();
if (name_cstr)
{
for (size_t i = 0; i < filter->GetCount(); i++)
{
const char* expr_cstr = filter->GetExpressionPathAtIndex(i);
@ -78,9 +80,13 @@ TypeFilterImpl::FrontEnd::GetIndexOfChildWithName (const ConstString &name)
else if (*expr_cstr == '-' && *(expr_cstr+1) == '>')
expr_cstr += 2;
}
if (expr_cstr)
{
if (!::strcmp(name_cstr, expr_cstr))
return i;
}
}
}
return UINT32_MAX;
}