зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1176340: short-circuit self-assignment of DesktopDisplayDevice r=jib
This commit is contained in:
Родитель
0f8b14b1fe
Коммит
ab137c3506
|
@ -76,6 +76,9 @@ const char *DesktopDisplayDevice::getUniqueIdName() {
|
|||
}
|
||||
|
||||
DesktopDisplayDevice& DesktopDisplayDevice::operator= (DesktopDisplayDevice& other) {
|
||||
if (&other == this) {
|
||||
return *this;
|
||||
}
|
||||
screenId_ = other.getScreenId();
|
||||
setUniqueIdName(other.getUniqueIdName());
|
||||
setDeviceName(other.getDeviceName());
|
||||
|
|
Загрузка…
Ссылка в новой задаче