зеркало из https://github.com/mozilla/pjs.git
making string conversions explicit
This commit is contained in:
Родитель
0b17d2a06c
Коммит
e0c1bc1018
|
@ -617,9 +617,10 @@ nsInstallFolder::ToString(nsAutoString* outString)
|
|||
mFileSpec->IsFile(&flagIsFile);
|
||||
if (!flagIsFile)
|
||||
{
|
||||
nsString tempString(temp);
|
||||
// STRING USE WARNING: perhaps |tempString| should be a |nsCString|
|
||||
nsString tempString; tempString.AssignWithConversion(temp);
|
||||
|
||||
tempString += FILESEP;
|
||||
tempString.AppendWithConversion(FILESEP);
|
||||
outString->AssignWithConversion(tempString.ToNewCString());
|
||||
}
|
||||
else
|
||||
|
|
Загрузка…
Ссылка в новой задаче