osc8: uri ranges: use a dynamically re-sizable array instead of a tllist

This commit is contained in:
Daniel Eklöf 2021-11-26 19:55:27 +01:00
parent b1043a72f8
commit ccee08a393
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F
4 changed files with 319 additions and 123 deletions

View file

@ -102,7 +102,11 @@ struct row_uri_range {
};
struct row_data {
tll(struct row_uri_range) uri_ranges;
struct {
struct row_uri_range *v;
uint32_t size;
uint32_t count;
} uri_ranges;
};
struct row {