[Users] [Bug 3584] New: After 3.13.1, characters in some Japanese codec are never correctly converted to internal ones

noreply at thewildbeast.co.uk noreply at thewildbeast.co.uk
Mon Dec 21 16:21:37 CET 2015


http://www.thewildbeast.co.uk/claws-mail/bugzilla/show_bug.cgi?id=3584

            Bug ID: 3584
           Summary: After 3.13.1, characters in some Japanese codec are
                    never correctly converted to internal ones
    Classification: Unclassified
           Product: Claws Mail
           Version: 3.13.1
          Hardware: PC
                OS: Linux
            Status: NEW
          Severity: normal
          Priority: P3
         Component: Other
          Assignee: users at lists.claws-mail.org
          Reporter: honda at math.sci.hokudai.ac.jp

The newly introduced code fragment in conv_jistoeuc() of codeconv.c

 while (*in != '\0' && (out - outbuf) > outlen - 3) {

is clearly wrong, which should be

 while (*in != '\0' && (out - outbuf) < outlen - 3) {

Becuase of this errata, conv_jistoeuc() never work after 3.13.1. 

Sincerely yours

-- 
You are receiving this mail because:
You are the assignee for the bug.



More information about the Users mailing list