From 5d08581d1961937ba4af5adbf2f484e449a045d5 Mon Sep 17 00:00:00 2001 From: Vitaly Buka Date: Wed, 26 Sep 2018 22:58:53 +0000 Subject: [PATCH] Init LookupResult::AmbiguityKind We don't expect useful value there unless it's "ambiguous". However we use read it for copying and moving, so we need either init the field add login to avoid reading invalid values. Such reads trigger ubsan errors. llvm-svn: 343150 --- clang/include/clang/Sema/Lookup.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/clang/include/clang/Sema/Lookup.h b/clang/include/clang/Sema/Lookup.h index faf2343d39cf..ef2842195ff6 100644 --- a/clang/include/clang/Sema/Lookup.h +++ b/clang/include/clang/Sema/Lookup.h @@ -709,7 +709,9 @@ private: // Results. LookupResultKind ResultKind = NotFound; - AmbiguityKind Ambiguity; // ill-defined unless ambiguous + // ill-defined unless ambiguous. Still need to be initialized it will be + // copied/moved. + AmbiguityKind Ambiguity = {}; UnresolvedSet<8> Decls; CXXBasePaths *Paths = nullptr; CXXRecordDecl *NamingClass = nullptr; -- GitLab