Resolver: Fix UB with nullptr method calls

Change-Id: Iaa098d7851ffaf01aac384fe623c94809948fe2e
Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/51182
Commit-Queue: Ben Clayton <bclayton@google.com>
Commit-Queue: Antonio Maiorano <amaiorano@google.com>
Auto-Submit: Ben Clayton <bclayton@google.com>
Reviewed-by: Antonio Maiorano <amaiorano@google.com>
This commit is contained in:
Ben Clayton 2021-05-14 20:05:43 +00:00 committed by Commit Bot service account
parent 57b2a06ba7
commit e9f5f63ea0
1 changed files with 10 additions and 5 deletions

View File

@ -501,14 +501,19 @@ Resolver::VariableInfo* Resolver::Variable(ast::Variable* var,
// TODO(crbug.com/tint/802): Temporary while ast::AccessControl exits.
auto find_first_access_control =
[this](ast::Type* ty) -> ast::AccessControl* {
ast::AccessControl* ac = ty->As<ast::AccessControl>();
if (ac) {
if (ty == nullptr) {
return nullptr;
}
if (ast::AccessControl* ac = ty->As<ast::AccessControl>()) {
return ac;
}
while (auto* tn = ty->As<ast::TypeName>()) {
ty = name_to_ast_type_[tn->name()];
ac = ty->As<ast::AccessControl>();
if (ac) {
auto it = name_to_ast_type_.find(tn->name());
if (it == name_to_ast_type_.end()) {
break;
}
ty = it->second;
if (auto* ac = ty->As<ast::AccessControl>()) {
return ac;
}
}