diff options
author | David Tardon <dtardon@redhat.com> | 2011-05-12 12:06:40 +0200 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2011-05-12 14:31:06 +0200 |
commit | 579a97d2c806a977cd4db05d9001610d3a78a943 (patch) | |
tree | 64b8c75c03fb75d69ea7e2450f3f1bb90c86ad4d /soltools | |
parent | 1f19cae182a78bf3b6d73857983d55ddc08fcc32 (diff) |
do not leak memory
Diffstat (limited to 'soltools')
-rw-r--r-- | soltools/inc/st_list.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/soltools/inc/st_list.hxx b/soltools/inc/st_list.hxx index 66a85c1255bb..5717e01609f3 100644 --- a/soltools/inc/st_list.hxx +++ b/soltools/inc/st_list.hxx @@ -44,7 +44,7 @@ class ST_List /// Soltools-List. ST_List(); ST_List( const ST_List<XX> & i_rList ); - virtual ~ST_List() { } + virtual ~ST_List() { delete[] inhalt; } // OPERATORS ST_List<XX> & operator=( |