Trivial fixes in CZString constructors.

This commit is contained in:
datadiode 2015-03-07 12:19:40 +01:00 committed by Christopher Dunn
parent 5c448687e1
commit ee83f8891c

View File

@ -196,7 +196,7 @@ void Value::CommentInfo::setComment(const char* text, size_t len) {
Value::CZString::CZString(ArrayIndex index) : cstr_(0), index_(index) {}
Value::CZString::CZString(char const* str, unsigned length, DuplicationPolicy allocate)
: cstr_(allocate == duplicate ? duplicateStringValue(str) : str)
: cstr_(allocate == duplicate ? duplicateStringValue(str, length) : str)
{
storage_.policy_ = allocate;
storage_.length_ = length;
@ -204,7 +204,7 @@ Value::CZString::CZString(char const* str, unsigned length, DuplicationPolicy al
Value::CZString::CZString(const CZString& other)
: cstr_(other.storage_.policy_ != noDuplication && other.cstr_ != 0
? duplicateStringValue(other.cstr_)
? duplicateStringValue(other.cstr_, other.storage_.length_)
: other.cstr_)
{
storage_.policy_ = (other.cstr_