dbms: fixed leak [#CONV-2944].

This commit is contained in:
Alexey Milovidov 2013-01-15 18:38:55 +00:00
parent 5b341830e9
commit d95a55ca82

View File

@ -93,6 +93,7 @@ public:
AutoArray & operator= (const AutoArray & src)
{
// std::cerr << this << " operator=(const AutoArray & src)" << std::endl;
uninit();
data = src.data;
const_cast<AutoArray<T> &>(src).setEmpty();