Assert when nsFileSpec gets a unix path

This commit is contained in:
mcmullen%netscape.com 1999-05-12 00:17:53 +00:00
Родитель c18dbb8bc4
Коммит 6da6f2e50d
2 изменённых файлов: 8 добавлений и 2 удалений

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

@ -44,7 +44,10 @@ void nsFileSpecHelpers::Canonify(nsSimpleCharString& ioPath, PRBool inMakeDirs)
if (ioPath.IsEmpty())
return;
if (inMakeDirs)
NS_ASSERTION(strchr((const char*)ioPath, '/') == 0,
"This smells like a Unix path. Native path expected! "
"Please fix.");
if (inMakeDirs)
{
const int mode = 0700;
nsSimpleCharString unixStylePath = ioPath;

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

@ -44,7 +44,10 @@ void nsFileSpecHelpers::Canonify(nsSimpleCharString& ioPath, PRBool inMakeDirs)
if (ioPath.IsEmpty())
return;
if (inMakeDirs)
NS_ASSERTION(strchr((const char*)ioPath, '/') == 0,
"This smells like a Unix path. Native path expected! "
"Please fix.");
if (inMakeDirs)
{
const int mode = 0700;
nsSimpleCharString unixStylePath = ioPath;