зеркало из https://github.com/mozilla/gecko-dev.git
Fix inefficient Assign pattern to use Append instead. b=113188 r=jag sr=jst
This commit is contained in:
Родитель
986705d7d8
Коммит
b7c07a1976
|
@ -453,8 +453,7 @@ nsLocalFile::AppendRelativePath(const char *fragment)
|
|||
if (*fragment == '/')
|
||||
return NS_ERROR_FILE_UNRECOGNIZED_PATH;
|
||||
|
||||
mPath.Assign(mPath + NS_LITERAL_CSTRING("/") +
|
||||
nsDependentCString(fragment));
|
||||
mPath.Append(NS_LITERAL_CSTRING("/") + nsDependentCString(fragment));
|
||||
|
||||
if (!mPath.get())
|
||||
return NS_ERROR_OUT_OF_MEMORY;
|
||||
|
|
Загрузка…
Ссылка в новой задаче