Commit 35b287d0 authored by Jonathan Beck's avatar Jonathan Beck

Do not free plist node twice in Dictionary destructor.

parent a42c74a1
...@@ -111,7 +111,6 @@ Dictionary::~Dictionary() ...@@ -111,7 +111,6 @@ Dictionary::~Dictionary()
{ {
for (Dictionary::iterator it = _map.begin(); it != _map.end(); it++) for (Dictionary::iterator it = _map.begin(); it != _map.end(); it++)
{ {
plist_free(it->second->GetPlist());
delete it->second; delete it->second;
} }
_map.clear(); _map.clear();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment