wtf. this is the wrong code. part of the nsIFile landing.

This commit is contained in:
dougt%netscape.com 2000-01-24 22:41:10 +00:00
Родитель 5eb590449c
Коммит 7450f891cf
1 изменённых файлов: 4 добавлений и 2 удалений

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

@ -1323,8 +1323,10 @@ nsStdURL::GetFile(nsIFile * *aFile)
#endif
// we need to make sure that the filepath is unescaped!
char* escapedPath = (char*) nsAllocator::Clone((void*)(const char*)path,strlen(path));
PRUint32 size;
path.SizeOf(nsnull, &size);
char* escapedPath = (char*) nsAllocator::Clone((void*)(const char*)path,size);
nsUnescape(escapedPath);
nsCOMPtr<nsILocalFile> localFile;