[Bug 18040] New: quoted-printable not decoded correctly

bugzilla-daemon at bugzilla.ubuntu.com bugzilla-daemon at bugzilla.ubuntu.com
Tue Oct 18 13:23:12 UTC 2005


Please do not reply to this email.  You can add comments at
http://bugzilla.ubuntu.com/show_bug.cgi?id=18040
Ubuntu | evolution-data-server

           Summary: quoted-printable not decoded correctly
           Product: Ubuntu
           Version: unspecified
          Platform: i386
        OS/Version: Linux
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: evolution-data-server
        AssignedTo: debzilla at ubuntu.com
        ReportedBy: felix.egli at goldnet.ch
         QAContact: desktop-bugs at lists.ubuntu.com


In the evolution-data-server package is a bug in the decoding of
quoted-printable encoded strings in vcards. The patch below fixes this bug.

This patch is for the package evolution-data-server_1.4.1-0ubuntu3

--- evolution-data-server-1.4.1/addressbook/libebook/e-vcard.c  2005-09-02
16:37:43.000000000 +0200
+++ evolution-data-server-1.4.1-patched/addressbook/libebook/e-vcard.c 
2005-10-17 21:54:52.406831833 +0200
@@ -236,7 +236,7 @@
                                 */
                        }
                        else if (isxdigit(a) && isxdigit (b)) {
-                               gunichar c;
+                               char c;

                                a = tolower (a);
                                b = tolower (b);
@@ -244,7 +244,7 @@
                                c = (((a>='a'?a-'a'+10:a-'0')&0x0f) << 4)
                                        | ((b>='a'?b-'a'+10:b-'0')&0x0f);

-                               g_string_append_unichar (str, c);
+                               g_string_append_c (str, c);
                        }
                        else
                                {

-- 
Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug, or are watching the QA contact.




More information about the desktop-bugs mailing list