mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-06 09:44:39 +00:00
Don't pass in a null pointer to std::string's ctor, an empty string
ref should produce an empty std::string. This fixes PR7879. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@111332 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
dc65f22390
commit
7f7274ce7f
@ -149,7 +149,10 @@ namespace llvm {
|
||||
unsigned edit_distance(StringRef Other, bool AllowReplacements = true);
|
||||
|
||||
/// str - Get the contents as an std::string.
|
||||
std::string str() const { return std::string(Data, Length); }
|
||||
std::string str() const {
|
||||
if (Data == 0) return "";
|
||||
return std::string(Data, Length);
|
||||
}
|
||||
|
||||
/// @}
|
||||
/// @name Operator Overloads
|
||||
|
Loading…
x
Reference in New Issue
Block a user