Summary: | Strings encoded with UTF16BE in ID3v2 frames are not rendered correctly | ||
---|---|---|---|
Product: | [Frameworks and Libraries] taglib | Reporter: | Urs Fleisch <ufleisch> |
Component: | general | Assignee: | Scott Wheeler <wheeler> |
Status: | RESOLVED FIXED | ||
Severity: | normal | ||
Priority: | NOR | ||
Version: | unspecified | ||
Target Milestone: | --- | ||
Platform: | Ubuntu | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
Urs Fleisch
2006-10-04 23:06:28 UTC
SVN commit 633110 by wheeler: Fix the byte ordering for UTF16BE BUG:135121 M +1 -1 tstring.cpp --- trunk/kdesupport/taglib/taglib/toolkit/tstring.cpp #633109:633110 @@ -391,8 +391,8 @@ char c1 = *it >> 8; char c2 = *it & 0xff; + v.append(c1); v.append(c2); - v.append(c1); } break; } |