зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1176096 - Ensure we don't do self-moves in move assignment (r=bent)
This commit is contained in:
Родитель
7eb5bf9f92
Коммит
b053e2eeeb
|
@ -161,7 +161,7 @@ public:
|
|||
|
||||
InterruptFrame& operator=(InterruptFrame&& aOther)
|
||||
{
|
||||
MOZ_ASSERT(&aOther != this);
|
||||
MOZ_RELEASE_ASSERT(&aOther != this);
|
||||
this->~InterruptFrame();
|
||||
new (this) InterruptFrame(mozilla::Move(aOther));
|
||||
return *this;
|
||||
|
|
Загрузка…
Ссылка в новой задаче