mirror of
https://github.com/taglib/taglib.git
synced 2025-11-17 07:02:53 -05: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