summaryrefslogtreecommitdiff
path: root/test/buflist.c
AgeCommit message (Collapse)Author
2025-01-21Fix buffer list not having stable ptrsAlbert Cervin
Was caused by using a vector that used realloc to grow. That only works sometimes. Now instead, the buffer list is a chunked linked list, i.e. a linked list where each element is a fixed size array.