Bug 286185 nsFileSpecUnix::Rename leaks on failure

patch by ajschult@verizon.net r=darin sr=darin
This commit is contained in:
timeless%mozdev.org 2005-03-16 20:07:34 +00:00
Родитель ae66ab05d7
Коммит 17b8a15296
1 изменённых файлов: 1 добавлений и 0 удалений

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

@ -406,6 +406,7 @@ nsresult nsFileSpec::Rename(const char* inNewName)
{
// Could not rename, set back to the original.
mPath = oldPath;
nsCRT::free(oldPath);
return NS_FILE_FAILURE;
}