From: Wilfried Goesgens Date: Mon, 25 Oct 2010 20:00:43 +0000 (+0200) Subject: * we already checked for '=' before, remove. X-Git-Tag: v8.01~635^2~1 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=ff7953d44ab38c3754bc2e1e9e4fa647c57c4029 * we already checked for '=' before, remove. --- diff --git a/libcitadel/lib/mime_parser.c b/libcitadel/lib/mime_parser.c index 038851e21..a9089ccc7 100644 --- a/libcitadel/lib/mime_parser.c +++ b/libcitadel/lib/mime_parser.c @@ -163,7 +163,7 @@ int CtdlDecodeQuotedPrintable(char *decoded, char *encoded, int sourcelen) { if (*(encoded + pos) == '\n') pos++; } - else if (encoded[pos] == '=') + else { ch = 0; ch = _decode_hex(&encoded[pos]);