mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-03 07:11:49 +00:00
Protect Array<> and HashMap<> instances against self assignments
svn-id: r26115
This commit is contained in:
parent
689ea77c0d
commit
30e975f9db
@ -100,6 +100,9 @@ public:
|
||||
}
|
||||
|
||||
Array<T>& operator =(const Array<T>& array) {
|
||||
if (this == &array)
|
||||
return *this;
|
||||
|
||||
if (_data)
|
||||
delete [] _data;
|
||||
_size = array._size;
|
||||
|
@ -155,6 +155,9 @@ public:
|
||||
~HashMap();
|
||||
|
||||
HM_t &operator =(const HM_t &map) {
|
||||
if (this == &map)
|
||||
return *this;
|
||||
|
||||
// Remove the previous content and ...
|
||||
clear();
|
||||
delete[] _arr;
|
||||
|
Loading…
x
Reference in New Issue
Block a user