mirror of
https://github.com/taglib/taglib.git
synced 2025-05-27 21:20:26 -04:00
Merge pull request #170 from TsudaKageyu/master
Small bug fix in tstring.cpp
This commit is contained in:
commit
58765ac40a
@ -709,7 +709,7 @@ String &String::operator=(wchar_t c)
|
||||
if(d->deref())
|
||||
delete d;
|
||||
|
||||
d = new StringPrivate(1, static_cast<uchar>(c));
|
||||
d = new StringPrivate(1, c);
|
||||
return *this;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user