back out part of patch in bug 241708 that breaks mailnews dirs on a different drive, r/sr/a=sspitzer

This commit is contained in:
bienvenu%nventure.com 2004-05-20 17:46:35 +00:00
Родитель dd3fccf259
Коммит 6a42626115
1 изменённых файлов: 7 добавлений и 0 удалений

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

@ -1766,6 +1766,13 @@ nsLocalFile::GetParent(nsIFile * *aParent)
// cannot use nsCString::RFindChar() due to 0x5c problem
PRInt32 offset = (PRInt32) (_mbsrchr((const unsigned char *) parentPath.get(), '\\')
- (const unsigned char *) parentPath.get());
// adding this offset check that was removed in bug 241708 fixes mail
// directories that aren't relative to/underneath the profile dir.
// e.g., on a different drive. Before you remove them, please make
// sure local mail directories that aren't underneath the profile dir work.
if (offset < 0)
return NS_ERROR_FILE_UNRECOGNIZED_PATH;
if (offset == 1 && parentPath[0] == '\\') {
aParent = nsnull;
return NS_OK;