about summary refs log tree commit diff stats
path: root/010vm.cc
diff options
context:
space:
mode:
Diffstat (limited to '010vm.cc')
-rw-r--r--010vm.cc14
1 files changed, 12 insertions, 2 deletions
diff --git a/010vm.cc b/010vm.cc
index ab003c73..53e40b0a 100644
--- a/010vm.cc
+++ b/010vm.cc
@@ -60,6 +60,7 @@ struct reagent {
   reagent(string s);
   reagent();
   ~reagent();
+  void clear();
   reagent(const reagent& old);
   reagent& operator=(const reagent& old);
   void set_value(double v) { value = v; initialized = true; }
@@ -319,9 +320,18 @@ reagent& reagent::operator=(const reagent& old) {
 }
 
 reagent::~reagent() {
-  for (long long int i = 0; i < SIZE(properties); ++i)
-    if (properties.at(i).second) delete properties.at(i).second;
+  clear();
+}
+
+void reagent::clear() {
+  for (long long int i = 0; i < SIZE(properties); ++i) {
+    if (properties.at(i).second) {
+      delete properties.at(i).second;
+      properties.at(i).second = NULL;
+    }
+  }
   delete type;
+  type = NULL;
 }
 type_tree::~type_tree() {
   delete left;