зеркало из https://github.com/mozilla/pjs.git
Get rid of extra leading slashes appearing in unix paths. Bug 124873,
r=petejc@optonline.net, sr=brendan.
This commit is contained in:
Родитель
82c4c82fbe
Коммит
c01dc3e0c4
|
@ -436,7 +436,11 @@ nsLocalFile::AppendRelativePath(const char *fragment)
|
|||
if (*fragment == '/')
|
||||
return NS_ERROR_FILE_UNRECOGNIZED_PATH;
|
||||
|
||||
mPath.Append(NS_LITERAL_CSTRING("/") + nsDependentCString(fragment));
|
||||
if (mPath.Equals("/")) {
|
||||
mPath.Append(nsDependentCString(fragment));
|
||||
} else {
|
||||
mPath.Append(NS_LITERAL_CSTRING("/") + nsDependentCString(fragment));
|
||||
}
|
||||
|
||||
if (!mPath.get())
|
||||
return NS_ERROR_OUT_OF_MEMORY;
|
||||
|
|
Загрузка…
Ссылка в новой задаче