From 8a35f5c344c47ac5dd70249b8691073126660100 Mon Sep 17 00:00:00 2001 From: Joey Schulze Date: Mon, 21 Apr 2008 16:02:01 +0000 Subject: [PATCH] Copy enough characters up to the encoding --- rfc2047.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rfc2047.c b/rfc2047.c index 4afd04a..0c72863 100644 --- a/rfc2047.c +++ b/rfc2047.c @@ -137,8 +137,8 @@ char *convert_header(char *buf) while ((encstart = strstr (inp, "=?"))) { if (encstart != inp) { - memcpy (outp, inp, encstart-inp-1); - outp += encstart-inp-1; + memcpy (outp, inp, encstart-inp); + outp += encstart-inp; } charset = encstart+2; -- 2.20.1