Comment 160 for bug 369150

Revision history for this message
In , Neil-httl (neil-httl) wrote :

(From update of attachment 351464)
>+ CopyUTF8toUTF16(outCString, bcc);
>+ if (bcc.Length() > 0)
>+ compFields->SetBcc(bcc);
Could be
if (!outCString.IsEmpty())
  compFields->SetBcc(NS_ConvertUTF8toUTF16(outCString));
[Length() is wrong either way]