The callable used for resize_and_overwrite was being passed the string's
expanded capacity, which might be greater than the new size being
requested. This is not conforming, as the standard requires the same n
to be passed to the callable that the user passed to
resize_and_overwrite.
The existing tests didn't catch this because they all used a value which
was more than twice the existing capacity, so the _M_create call
allocated exactly what was requested, and the value passed to the
callable was correct. But when the requested size is greater than the
current capacity but smaller than twice the current capacity, _M_create
will allocate twice the current capacity and then that value was being
passed to the callable.
I noticed this because std::format(L"{}", 0.25) was producing L"0.25XX"
where the XX characters were whatever happened to be on the stack before
the call. When std::format used resize_and_overwrite to widen a string
it was copying too many characters into the destination and setting the
result's length too long.
libstdc++-v3/ChangeLog:
* include/bits/basic_string.tcc (resize_and_overwrite): Invoke
the callable with the same size as resize_and_overwrite was
called with.
* testsuite/21_strings/basic_string/capacity/char/resize_and_overwrite.cc:
Check with small values for the new size.
(cherry picked from commit
4a2b262597e4a6bc5732d4564673c1e19381dcfa)
template<typename _Operation>
constexpr void
basic_string<_CharT, _Traits, _Alloc>::
- resize_and_overwrite(size_type __n, _Operation __op)
+ resize_and_overwrite(const size_type __n, _Operation __op)
{
const size_type __capacity = capacity();
_CharT* __p;
if (__n > __capacity)
{
- __p = _M_create(__n, __capacity);
+ auto __new_capacity = __n; // Must not allow _M_create to modify __n.
+ __p = _M_create(__new_capacity, __capacity);
this->_S_copy(__p, _M_data(), length()); // exclude trailing null
#if __cpp_lib_is_constant_evaluated
if (std::is_constant_evaluated())
#endif
_M_dispose();
_M_data(__p);
- _M_capacity(__n);
+ _M_capacity(__new_capacity);
}
else
__p = _M_data();
return true;
}
+void
+test06()
+{
+ std::string s = "0123456789";
+ s.resize_and_overwrite(16, [](char* p, int n) {
+ VERIFY( n == 16 );
+ std::char_traits<char>::copy(p + 10, "0123456798", 6);
+ return n;
+ });
+ VERIFY( s.size() == 16 );
+ VERIFY( s == "0123456789012345" );
+
+ s.resize_and_overwrite(4, [](char* p, int n) {
+ VERIFY( n == 4 );
+ std::char_traits<char>::copy(p, "abcd", 4);
+ return n;
+ });
+ VERIFY( s.size() == 4 );
+}
+
int main()
{
test01();
test03();
test04();
static_assert( test05() );
+ test06();
}