View | Details | Raw Unified | Return to bug 339481
Collapse All | Expand All

(-)gmime/gmime-utils.c (-2 / +2 lines)
Lines 1707-1716 Link Here
1707
			ascii = TRUE;
1707
			ascii = TRUE;
1708
			
1708
			
1709
#ifdef ENABLE_RFC2047_WORKAROUNDS
1709
#ifdef ENABLE_RFC2047_WORKAROUNDS
1710
			if (!strncmp (inptr, "=?", 2) && inptr[2] != '?') {
1710
			if (!strncmp (inptr, "=?", 2)) {
1711
				inptr += 2;
1711
				inptr += 2;
1712
				
1712
				
1713
				/* skip past the charset */
1713
				/* skip past the charset (if one is even declared, sigh) */
1714
				while (*inptr && *inptr != '?') {
1714
				while (*inptr && *inptr != '?') {
1715
					ascii = ascii && is_ascii (*inptr);
1715
					ascii = ascii && is_ascii (*inptr);
1716
					inptr++;
1716
					inptr++;

Return to bug 339481