зеркало из https://github.com/microsoft/clang-1.git
The children statements might be NULL. Check for this case in
isContainedInStatement(). git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@76408 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Родитель
b27ed3d731
Коммит
89021b0c71
|
@ -51,8 +51,9 @@ static bool isContainedInStatement(Stmt *Node, Stmt *Parent) {
|
|||
|
||||
for (Stmt::child_iterator
|
||||
I = Parent->child_begin(), E = Parent->child_end(); I != E; ++I) {
|
||||
if (isContainedInStatement(Node, *I))
|
||||
return true;
|
||||
if (*I)
|
||||
if (isContainedInStatement(Node, *I))
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
|
|
Загрузка…
Ссылка в новой задаче