https://bugs.kde.org/show_bug.cgi?id=491824
Stefan Brüns <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] | |e --- Comment #2 from Stefan Brüns <[email protected]> --- The reset() bug has been fixed in git, and will be available in Frameworks 6.24. The remaining observation is not a bug. $> echo -n Этот | hexdump -C 00000000 d0 ad d1 82 d0 be d1 82 "d0 ad d1 82 d0 be d1 82" is a valid GBK/GB18030 sequence: $> echo -n Этот | iconv -f gb18030 协褌芯褌 It is also a valid, though incomplete SJIS sequence - "d0 ad d1 82d0 be d1 82d0 ad" is. $> echo -n ЭтотЭ | iconv -f sjis ミュムひセムひ By adding \n == 0x0a, the sequence becomes invalid for SJIS. The input is just to short to give a reliable guess. -- You are receiving this mail because: You are watching all bug changes.
