mirror of
https://github.com/taglib/taglib.git
synced 2025-07-26 08:54:30 -04:00
Fixed a bug in appending strings and added some relevant tests
This commit is contained in:
@ -635,7 +635,7 @@ String &String::operator+=(const wchar_t *s)
|
||||
{
|
||||
detach();
|
||||
|
||||
*d->data += *s;
|
||||
*d->data += s;
|
||||
return *this;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user