mirror of
https://github.com/taglib/taglib.git
synced 2025-06-03 17:18:11 -04:00
Fix String::data() for UTF16 -- there was a missing break in the case
statement, so both the UTF16 and the UTF16BE versions were being executed. CCMAIL:Ilya Konstantinov <future@shiny.co.il> git-svn-id: svn://anonsvn.kde.org/home/kde/trunk/kdesupport/taglib@290210 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
This commit is contained in:
parent
b23b37eb73
commit
9a63f34627
@ -312,6 +312,7 @@ ByteVector String::data(Type t) const
|
||||
v.append(c1);
|
||||
v.append(c2);
|
||||
}
|
||||
break;
|
||||
}
|
||||
case UTF16BE:
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user