diff -r 2e7225dbd9b2 -r e254398fcc7c sources/mystring.cpp --- a/sources/mystring.cpp Wed Jan 27 13:08:51 2021 +0200 +++ b/sources/mystring.cpp Wed Jan 27 13:17:11 2021 +0200 @@ -380,7 +380,7 @@ // vsnprintf needs more space, so we have to allocate a new buffer and try again. Vector newBuffer(length + 1); vsnprintf(newBuffer.data(), length + 1, formatString, argsCopy); - m_string = newBuffer; + m_string = newBuffer.data(); } }