summaryrefslogtreecommitdiffstats
path: root/src/Dictionary.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Dictionary.cpp')
-rw-r--r--src/Dictionary.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Dictionary.cpp b/src/Dictionary.cpp
index 20e9710..ea04e81 100644
--- a/src/Dictionary.cpp
+++ b/src/Dictionary.cpp
@@ -39,7 +39,7 @@ static void dictionary_fill(Dictionary *_this, std::map<std::string,Node*> &map,
39 plist_dict_next_item(node, it, &key, &subnode); 39 plist_dict_next_item(node, it, &key, &subnode);
40 if (key && subnode) 40 if (key && subnode)
41 map[std::string(key)] = Node::FromPlist(subnode, _this); 41 map[std::string(key)] = Node::FromPlist(subnode, _this);
42 free(key); 42 delete key;
43 } while (subnode); 43 } while (subnode);
44 free(it); 44 free(it);
45} 45}
@@ -156,7 +156,7 @@ void Dictionary::Remove(Node* node)
156 plist_dict_get_item_key(node->GetPlist(), &key); 156 plist_dict_get_item_key(node->GetPlist(), &key);
157 plist_dict_remove_item(_node, key); 157 plist_dict_remove_item(_node, key);
158 std::string skey = key; 158 std::string skey = key;
159 free(key); 159 delete key;
160 _map.erase(skey); 160 _map.erase(skey);
161 delete node; 161 delete node;
162 } 162 }