зеркало из https://github.com/mozilla/pjs.git
Fix a regression from my patch for bug 445999 in the self-assignment case.
This commit is contained in:
Родитель
0aa8acbd76
Коммит
ea277028d1
|
@ -732,6 +732,11 @@ nsStringArray::~nsStringArray(void)
|
|||
nsStringArray&
|
||||
nsStringArray::operator=(const nsStringArray& other)
|
||||
{
|
||||
if (this == &other)
|
||||
{
|
||||
return *this;
|
||||
}
|
||||
|
||||
// Free our strings
|
||||
Clear();
|
||||
|
||||
|
@ -985,6 +990,11 @@ nsCStringArray::~nsCStringArray(void)
|
|||
nsCStringArray&
|
||||
nsCStringArray::operator=(const nsCStringArray& other)
|
||||
{
|
||||
if (this == &other)
|
||||
{
|
||||
return *this;
|
||||
}
|
||||
|
||||
// Free our strings
|
||||
Clear();
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче