Hi Vadim,

I guess that on line 1557 in mailFolderCC.cpp, we should have a 'break'
instead of a 'continue'.

         if ( !*p )
         {
            wxLogDebug(_T("Missing encoded word end marker in '%s'."),
                       pEncWordStart);
            out += pEncWordStart;

            break;
         }

Otherwise, we continue to read some garbage after the end of the actual
header line, as the 'continue' statement will first increment p, then
start a new iteration of the loop...

PS: I send this mail because I can't commit at this time...

-- 
Xavier Nodet
"They that can give up essential liberty to obtain a little temporary
safety deserve neither liberty nor safety." - Benjamin Franklin, 1759.




-------------------------------------------------------
This sf.net email is sponsored by: To learn the basics of securing 
your web site with SSL, click here to get a FREE TRIAL of a Thawte 
Server Certificate: http://www.gothawte.com/rd524.html
_______________________________________________
Mahogany-Developers mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/mahogany-developers

Reply via email to