for_each is traversing too many nodes. When checking whether a child node should be traversed it erroneously uses the posfix-len of the parent node, thus effectively checking whether the parent node matches.
This affects only for_each(callback, filter) when used with filters.
for_each(box, callback, filter) is not affected.
for_each
is traversing too many nodes. When checking whether a child node should be traversed it erroneously uses the posfix-len of the parent node, thus effectively checking whether the parent node matches.This affects only
for_each(callback, filter)
when used with filters.for_each(box, callback, filter)
is not affected.