Skip to content

Commit 401997d

Browse files
committedMar 5, 2019
[clang-tidy] Fix bugprone-string-constructor crash
llvm-svn: 355401
1 parent 4d93b9c commit 401997d

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed
 

‎clang-tools-extra/clang-tidy/bugprone/StringConstructorCheck.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,8 @@ void StringConstructorCheck::check(const MatchFinder::MatchResult &Result) {
138138
}
139139
} else if (const auto *Ptr = Result.Nodes.getNodeAs<Expr>("from-ptr")) {
140140
Expr::EvalResult ConstPtr;
141-
if (Ptr->EvaluateAsRValue(ConstPtr, Ctx) &&
141+
if (!Ptr->isInstantiationDependent() &&
142+
Ptr->EvaluateAsRValue(ConstPtr, Ctx) &&
142143
((ConstPtr.Val.isInt() && ConstPtr.Val.getInt().isNullValue()) ||
143144
(ConstPtr.Val.isLValue() && ConstPtr.Val.isNullPointer()))) {
144145
diag(Loc, "constructing string from nullptr is undefined behaviour");

‎clang-tools-extra/test/clang-tidy/bugprone-string-constructor.cpp

+8
Original file line numberDiff line numberDiff line change
@@ -65,3 +65,11 @@ void Valid() {
6565
std::string s2("test", 3);
6666
std::string s3("test");
6767
}
68+
69+
namespace instantiation_dependent_exprs {
70+
template<typename T>
71+
struct S {
72+
bool x;
73+
std::string f() { return x ? "a" : "b"; }
74+
};
75+
}

0 commit comments

Comments
 (0)
Please sign in to comment.