From 79acb7305616f9cdb8a400cac40ed8034413b79e Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Mon, 6 Feb 2017 22:54:47 -0800 Subject: 3740 --- 010vm.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to '010vm.cc') diff --git a/010vm.cc b/010vm.cc index fd26a81d..92384f02 100644 --- a/010vm.cc +++ b/010vm.cc @@ -481,7 +481,8 @@ reagent& reagent::operator=(const reagent& other) { if (properties.at(i).second) delete properties.at(i).second; properties.clear(); for (int i = 0; i < SIZE(other.properties); ++i) - properties.push_back(pair(other.properties.at(i).first, other.properties.at(i).second ? new string_tree(*other.properties.at(i).second) : NULL)); + properties.push_back(pair(other.properties.at(i).first, + other.properties.at(i).second ? new string_tree(*other.properties.at(i).second) : NULL)); name = other.name; value = other.value; initialized = other.initialized; -- cgit 1.4.1-2-gfad0