summaryrefslogtreecommitdiffstats
path: root/clang/lib/Analysis/CastToStructChecker.cpp
diff options
context:
space:
mode:
authorBenjamin Kramer <benny.kra@googlemail.com>2009-11-14 12:08:24 +0000
committerBenjamin Kramer <benny.kra@googlemail.com>2009-11-14 12:08:24 +0000
commitf4c511b026a8c9d11392c5ce05ff0a6de28d8172 (patch)
tree73f8290ea8de557db9c0c4f5f83c08128af18340 /clang/lib/Analysis/CastToStructChecker.cpp
parentea956ddf0b664de624b5ca046f5d9daf87ada727 (diff)
downloadbcm5719-llvm-f4c511b026a8c9d11392c5ce05ff0a6de28d8172.tar.gz
bcm5719-llvm-f4c511b026a8c9d11392c5ce05ff0a6de28d8172.zip
Change *BugReport constructors to take StringRefs.
- Eliminates many calls to std::string.c_str() - Fixes an invalid read in ReturnStackAddressChecker due to an unsafe call to StringRef.data() which doesn't guarantee null-termination. llvm-svn: 88779
Diffstat (limited to 'clang/lib/Analysis/CastToStructChecker.cpp')
-rw-r--r--clang/lib/Analysis/CastToStructChecker.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/clang/lib/Analysis/CastToStructChecker.cpp b/clang/lib/Analysis/CastToStructChecker.cpp
index bda8ff47bf8..ccd4a3333e2 100644
--- a/clang/lib/Analysis/CastToStructChecker.cpp
+++ b/clang/lib/Analysis/CastToStructChecker.cpp
@@ -65,8 +65,7 @@ void CastToStructChecker::PreVisitCastExpr(CheckerContext &C,
"Casting a non-structure type to a structure type "
"and accessing a field can lead to memory access "
"errors or data corruption.");
- RangedBugReport *R = new RangedBugReport(*BT,BT->getDescription().c_str(),
- N);
+ RangedBugReport *R = new RangedBugReport(*BT,BT->getDescription(), N);
R->addRange(CE->getSourceRange());
C.EmitReport(R);
}
OpenPOWER on IntegriCloud