Fixing hpux bustage. r=dbaron.

This commit is contained in:
bryner%brianryner.com 2004-04-01 23:13:25 +00:00
Родитель 5076fd41dd
Коммит aeecfdfb3a
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -745,10 +745,12 @@ nsLocalFile::CopyToNative(nsIFile *newParent, const nsACString &newName)
#endif
// actually create the file.
nsCOMPtr<nsLocalFile> newFile = new nsLocalFile();
nsLocalFile *newFile = new nsLocalFile();
if (!newFile)
return NS_ERROR_OUT_OF_MEMORY;
nsCOMPtr<nsILocalFile> fileRef(newFile); // release on exit
rv = newFile->InitWithNativePath(newPathName);
if (NS_FAILED(rv))
return rv;