Commit 97f7caee authored by Jonathan Beck's avatar Jonathan Beck

Fix dict iteration.

parent bc08d5f5
......@@ -278,7 +278,7 @@ void plist_dict_next_item(plist_t node, plist_dict_iter iter, char **key, plist_
}
if (val) {
val = (plist_t) g_node_nth_child(node, 2 * (*iter) + 1);
*val = (plist_t) g_node_nth_child(node, 2 * (*iter) + 1);
}
*iter += 2;
......
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