Protect assignment operator from this == &src case

pull/593/head
Andrei Kortunov 4 years ago
parent 33da0af1d1
commit 80ee1b55ea

@ -120,6 +120,9 @@ MWWorld::InventoryStore::InventoryStore (const InventoryStore& store)
MWWorld::InventoryStore& MWWorld::InventoryStore::operator= (const InventoryStore& store)
{
if (this == &store)
return *this;
mListener = store.mListener;
mInventoryListener = store.mInventoryListener;
mMagicEffects = store.mMagicEffects;

Loading…
Cancel
Save