fix import of eudora files with leading spaces in the name, patch by beckley@qualcomm.com, r/sr=bienvenu 331708

This commit is contained in:
bienvenu%nventure.com 2007-10-19 02:12:43 +00:00
Родитель 68d45468da
Коммит 8f35fbb640
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -361,7 +361,9 @@ nsresult nsEudoraWin32::ScanDescmap( nsIFile *pFolder, nsISupportsArray *pArray,
fName.Truncate();
if (fieldLen)
fName.Append( pStart, fieldLen);
fName.Trim( kWhitespace);
// Descmap file name is written without any extraneous white space - i.e.
// if there's whitespace present it's intentional and important. Don't
// strip whitespace from the fName.
pos++;
pData++;
pStart = pData;