зеркало из https://github.com/mozilla/gecko-dev.git
Assert when nsFileSpec gets a unix path
This commit is contained in:
Родитель
c18dbb8bc4
Коммит
6da6f2e50d
|
@ -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;
|
||||
|
|
Загрузка…
Ссылка в новой задаче