diff options
Diffstat (limited to 'lib/base/estring.cpp')
| -rw-r--r-- | lib/base/estring.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/base/estring.cpp b/lib/base/estring.cpp index 10bfbef8..18b277ab 100644 --- a/lib/base/estring.cpp +++ b/lib/base/estring.cpp @@ -341,7 +341,8 @@ std::string convertDVBUTF8(const unsigned char *data, int len, int table, int ts case 0x10: { // eDebug("(0x10)text encoded in ISO-8859-%d",n); - int n=(data[++i]<<8)|(data[++i]); + int n=(data[++i]<<8); + n |= (data[++i]); ++i; switch(n) { |
