From: Wilfried Goesgens Date: Sat, 26 May 2012 13:35:12 +0000 (+0200) Subject: remove unneeded assignment. X-Git-Tag: v8.12~51 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=6478a99dd9baccff08f9004649880226b4c82a50 remove unneeded assignment. --- diff --git a/libcitadel/lib/mime_parser.c b/libcitadel/lib/mime_parser.c index 11f2a27cf..fe06347a5 100644 --- a/libcitadel/lib/mime_parser.c +++ b/libcitadel/lib/mime_parser.c @@ -178,7 +178,6 @@ int CtdlDecodeQuotedPrintable(char *decoded, char *encoded, int sourcelen) { } else { - ch = 0; ch = _decode_hex(&encoded[pos]); pos += 2; decoded[decoded_length++] = ch;