| 821 | } |
| 822 | |
| 823 | struct cache_entry *make_empty_transient_cache_entry(size_t len, |
| 824 | struct mem_pool *ce_mem_pool) |
| 825 | { |
| 826 | if (ce_mem_pool) |
| 827 | return mem_pool__ce_calloc(ce_mem_pool, len); |
| 828 | return xcalloc(1, cache_entry_size(len)); |
| 829 | } |
| 830 | |
| 831 | enum verify_path_result { |
| 832 | PATH_OK, |
no test coverage detected