Skip to content

Commit

Permalink
Fix key valuation in dictionary loop.
Browse files Browse the repository at this point in the history
  • Loading branch information
JonathanBeck committed Oct 16, 2009
1 parent 0f69774 commit 7372d12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Dictionary.cpp
Original file line number Diff line number Diff line change
@@ -80,7 +80,7 @@ Dictionary::Dictionary(plist_t node) : Structure()
subnode = NULL;
free(key);
key = NULL;
plist_dict_next_item(_node, it, NULL, &subnode);
plist_dict_next_item(_node, it, &key, &subnode);
}
free(it);
}

0 comments on commit 7372d12

Please sign in to comment.