diff --git a/distrho/extra/String.hpp b/distrho/extra/String.hpp index 88a7501d..d9a91ca4 100644 --- a/distrho/extra/String.hpp +++ b/distrho/extra/String.hpp @@ -861,7 +861,7 @@ public: std::memcpy(newBuf, fBuffer, fBufferLen); std::memcpy(newBuf + fBufferLen, strBuf, strBufLen + 1); - return String(newBuf); + return String(newBuf, false); } String operator+(const String& str) noexcept