mirror of
https://github.com/taglib/taglib.git
synced 2025-06-04 01:28:21 -04:00
Fix the byte ordering for UTF16BE
BUG:135121 git-svn-id: svn://anonsvn.kde.org/home/kde/trunk/kdesupport/taglib@633110 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
This commit is contained in:
parent
320b76d95a
commit
3218095aca
@ -391,8 +391,8 @@ ByteVector String::data(Type t) const
|
||||
char c1 = *it >> 8;
|
||||
char c2 = *it & 0xff;
|
||||
|
||||
v.append(c2);
|
||||
v.append(c1);
|
||||
v.append(c2);
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user