attempt to fix mac build bustage

This commit is contained in:
morse%netscape.com 1999-05-11 04:50:41 +00:00
Родитель 054bd5bf26
Коммит 12cb7ff46b
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -735,13 +735,13 @@ PUBLIC nsFileSpec Wallet_ProfileDirectory(char * file) {
rv = nsServiceManager::GetService
(kFileLocatorCID, kIFileLocatorIID, (nsISupports**)&locator);
if (NS_FAILED(rv) || !locator)
return NULL;
return (nsFileSpec)NULL;
nsFileSpec dirSpec;
rv = locator->GetFileLocation
(nsSpecialFileSpec::App_UserProfileDirectory50, &dirSpec);
nsServiceManager::ReleaseService(kFileLocatorCID, locator);
if (NS_FAILED(rv))
return NULL;
return (nsFileSpec)NULL;
return dirSpec+file;
}