Protect Array<> and HashMap<> instances against self assignments

svn-id: r26115
This commit is contained in:
Max Horn 2007-03-12 22:34:29 +00:00
parent 689ea77c0d
commit 30e975f9db
2 changed files with 6 additions and 0 deletions

View File

@ -100,6 +100,9 @@ public:
}
Array<T>& operator =(const Array<T>& array) {
if (this == &array)
return *this;
if (_data)
delete [] _data;
_size = array._size;

View File

@ -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;