Attention is currently required from: pespin.
1 comment:
File proxy/src/burst_fwd.c:
Patch Set #4, Line 156: llist_add(&msg->list, &cur->list);
but shouldn't this be llist_add_tail now?
No. Despite we're iterating the list in reverse, we still want to add the new entry right after the `cur`, not before. Using `llist_add_tail` would break the sort (new entry would land ahead of an entry it must come after).
To view, visit change 43612. To unsubscribe, or for help writing mail filters, visit settings.