| 4614 | } |
| 4615 | |
| 4616 | static void clusterManagerNodeArrayInit(clusterManagerNodeArray *array, |
| 4617 | int alloc_len) |
| 4618 | { |
| 4619 | array->nodes = zcalloc(alloc_len * sizeof(clusterManagerNode*), MALLOC_LOCAL); |
| 4620 | array->alloc = array->nodes; |
| 4621 | array->len = alloc_len; |
| 4622 | array->count = 0; |
| 4623 | } |
| 4624 | |
| 4625 | /* Reset array->nodes to the original array allocation and re-count non-NULL |
| 4626 | * nodes. */ |
no test coverage detected