stupid off by one: skip the last ')' in a comment !
[apps/madmutt.git] / lib-mime / rfc2231.c
index 24f8ba2..287c1d6 100644 (file)
@@ -175,7 +175,7 @@ rfc2231_join_continuations(parameter_t **head, rfc2231_param *par)
             vl = m_strlen(par->value);
 
             p_realloc(&value, l + vl + 1);
-            strcpy (value + l, par->value);   /* __STRCPY_CHECKED__ */
+            m_strcpy(value + l, vl + 1, par->value);
             l += vl;
 
             q = par->next;
@@ -233,7 +233,7 @@ void rfc2231_decode_parameters (parameter_t ** headp)
              * Internet Gateways.  So we actually decode it.
              */
 
-            if (option(OPTRFC2047PARAMS) && p->value && strstr(p->value, "=?")) {
+            if (p->value && strstr(p->value, "=?")) {
                 rfc2047_decode(&p->value);
             } else {
                 if (mime_which_token(AssumedCharset, -1) == MIME_US_ASCII)