Open GoogleCodeExporter opened 9 years ago
Function read16bitstring() incorrectly calculates length of 16-bit strings, resulting in cropped strings and corresponding notices from iconv() about incomplete multibyte characters. To fix, please replace (line 830): while (ord($data[$start + $len]) + ord($data[$start + $len + 1]) > 0) $len++; with: while (ord($data[$start + $len]) + ord($data[$start + $len + 1]) > 0) $len+=2;
Original issue reported on code.google.com by alexanderk23 on 22 Apr 2010 at 7:45
alexanderk23
For me it works perfectly! Thanks for fixing this bug.
Original comment by jmichel....@gmail.com on 2 Jul 2010 at 8:52
jmichel....@gmail.com
Original issue reported on code.google.com by
alexanderk23
on 22 Apr 2010 at 7:45