summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/Dictionary.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Dictionary.cpp b/src/Dictionary.cpp
index d4aac2e..0030df6 100644
--- a/src/Dictionary.cpp
+++ b/src/Dictionary.cpp
@@ -72,7 +72,7 @@ Dictionary::Dictionary(PList::Dictionary& d) : Structure()
72 subnode = NULL; 72 subnode = NULL;
73 free(key); 73 free(key);
74 key = NULL; 74 key = NULL;
75 plist_dict_next_item(_node, it, NULL, &subnode); 75 plist_dict_next_item(_node, it, &key, &subnode);
76 } 76 }
77 free(it); 77 free(it);
78} 78}