Commit 5d9e97d4 authored by Jonathan Beck's avatar Jonathan Beck

fix wrong binary dict parsing.

parent 66df32ee
......@@ -285,7 +285,6 @@ static plist_t parse_bin_node(char *object, uint8_t dict_size, char **next_objec
plist_t size_node = parse_bin_node(object, dict_size, &object);
if (plist_get_node_type(size_node) != PLIST_UINT)
return NULL;
object++;
size = plist_get_node_uint_val(size_node);
}
return parse_dict_node(object, size, dict_size);
......
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